mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Fix Python 3 support for pythonPackages.ncclient (#68226)
This commit is contained in:
parent
ed41f7e8f9
commit
7406bd28e0
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ libxml2.dev libxslt.dev ];
|
||||
buildInputs = [ libxml2 libxslt ];
|
||||
propagatedBuildInputs = [ libxml2 libxslt ];
|
||||
|
||||
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
||||
|
||||
|
@ -4,8 +4,6 @@
|
||||
, paramiko
|
||||
, selectors2
|
||||
, lxml
|
||||
, libxml2
|
||||
, libxslt
|
||||
, nose
|
||||
, rednose
|
||||
}:
|
||||
@ -22,7 +20,7 @@ buildPythonPackage rec {
|
||||
checkInputs = [ nose rednose ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
paramiko lxml libxml2 libxslt selectors2
|
||||
paramiko lxml selectors2
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user