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 12:14:32 +02:00
committed by Frederik Rietdijk
parent d046ab888c
commit 28367c64fd
@@ -9,6 +9,7 @@
, pretend , pretend
, flaky , flaky
, glibcLocales , glibcLocales
, six
}: }:
with stdenv.lib; with stdenv.lib;
@@ -84,7 +85,7 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin; doCheck = !stdenv.isDarwin;
nativeBuildInputs = [ openssl ]; nativeBuildInputs = [ openssl ];
propagatedBuildInputs = [ cryptography pyasn1 idna ]; propagatedBuildInputs = [ cryptography pyasn1 idna six ];
checkInputs = [ pytest pretend flaky glibcLocales ]; checkInputs = [ pytest pretend flaky glibcLocales ];
} }