mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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:
parent
d046ab888c
commit
28367c64fd
@ -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 ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user