mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +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 ];
|
nativeBuildInputs = [ libxml2.dev libxslt.dev ];
|
||||||
buildInputs = [ libxml2 libxslt ];
|
propagatedBuildInputs = [ libxml2 libxslt ];
|
||||||
|
|
||||||
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
||||||
|
|
||||||
|
@ -4,8 +4,6 @@
|
|||||||
, paramiko
|
, paramiko
|
||||||
, selectors2
|
, selectors2
|
||||||
, lxml
|
, lxml
|
||||||
, libxml2
|
|
||||||
, libxslt
|
|
||||||
, nose
|
, nose
|
||||||
, rednose
|
, rednose
|
||||||
}:
|
}:
|
||||||
@ -22,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
checkInputs = [ nose rednose ];
|
checkInputs = [ nose rednose ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
paramiko lxml libxml2 libxslt selectors2
|
paramiko lxml selectors2
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user