aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-09-09 10:35:26 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-09-09 12:14:32 +0200
commit28367c64fdb0c572d7d1977894877787710d02a3 (patch)
tree0368f140196ed53ed6a574f53ca8d1a16329279e /pkgs/development/python-modules
parentd046ab888c0779f4ff209f0d5635e094cffbd235 (diff)
pythonPackages.pyopenssl: add missing six dependency
It might have been there as a transitive dependency but better be explicity about it.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pyopenssl/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix
index ec17b77ba20..018463ead54 100644
--- a/pkgs/development/python-modules/pyopenssl/default.nix
+++ b/pkgs/development/python-modules/pyopenssl/default.nix
@@ -9,6 +9,7 @@
, pretend
, flaky
, glibcLocales
+, six
}:
with stdenv.lib;
@@ -84,7 +85,7 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin;
nativeBuildInputs = [ openssl ];
- propagatedBuildInputs = [ cryptography pyasn1 idna ];
+ propagatedBuildInputs = [ cryptography pyasn1 idna six ];
checkInputs = [ pytest pretend flaky glibcLocales ];
}