pythonPackages.pyopenssl: add missing six dependency

It might have been there as a transitive dependency but better be
explicity about it.
This commit is contained in:
Andreas Rammhold 2019-09-09 10:35:26 +02:00
parent 1a1a7ed266
commit 5f3d43fedf

View File

@ -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 ];
}