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 committed by Frederik Rietdijk
parent d046ab888c
commit 28367c64fd

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