summary refs log tree commit diff
path: root/pkgs/development/python-modules/ncclient
diff options
context:
space:
mode:
authorSimon <code@chatts.net>2019-09-21 17:58:23 +0100
committerzimbatm <zimbatm@zimbatm.com>2019-09-21 16:58:23 +0000
commit7406bd28e0994b78626d0a4b6200a03e43fbe87d (patch)
treea63debdb9d619f125e6eab8cdf7e1cbb3ceb2840 /pkgs/development/python-modules/ncclient
parented41f7e8f9e03eea33b89b63933a26318646bf2e (diff)
downloadnixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar.gz
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar.bz2
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar.lz
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar.xz
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.tar.zst
nixpkgs-7406bd28e0994b78626d0a4b6200a03e43fbe87d.zip
Fix Python 3 support for pythonPackages.ncclient (#68226)
Diffstat (limited to 'pkgs/development/python-modules/ncclient')
-rw-r--r--pkgs/development/python-modules/ncclient/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ncclient/default.nix b/pkgs/development/python-modules/ncclient/default.nix
index 10baadcab30..02e2a1b472a 100644
--- a/pkgs/development/python-modules/ncclient/default.nix
+++ b/pkgs/development/python-modules/ncclient/default.nix
@@ -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 = ''