nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libproxy: remove Python 2 bidnings

Nothing was using them.

Another step in Python 2 removal.

+2 -4
+2 -4
pkgs/development/libraries/libproxy/default.nix
··· 11 11 , gsettings-desktop-schemas 12 12 , glib 13 13 , makeWrapper 14 - , python2 15 14 , python3 16 15 , SystemConfiguration 17 16 , CoreFoundation ··· 28 29 sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs"; 29 30 }; 30 31 31 - outputs = [ "out" "dev" "py2" "py3" ]; 32 + outputs = [ "out" "dev" "py3" ]; 32 33 33 34 nativeBuildInputs = [ 34 35 pkgconfig ··· 38 39 39 40 buildInputs = [ 40 41 pcre 41 - python2 42 42 python3 43 43 zlib 44 44 ] ++ (if stdenv.hostPlatform.isDarwin then [ ··· 53 55 54 56 cmakeFlags = [ 55 57 "-DWITH_MOZJS=ON" 56 - "-DPYTHON2_SITEPKG_DIR=${placeholder "py2"}/${python2.sitePackages}" 58 + "-DWITH_PYTHON2=OFF" 57 59 "-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}" 58 60 ]; 59 61