python2Packages.cryptography: add missing ipaddress dependency
This commit is contained in:
parent
2420184727
commit
2e6fb22992
@ -2,6 +2,8 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
, isPy27
|
||||
, ipaddress
|
||||
, openssl
|
||||
, cryptography_vectors
|
||||
, darwin
|
||||
@ -33,7 +35,8 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [
|
||||
packaging
|
||||
six
|
||||
] ++ stdenv.lib.optional (!isPyPy) cffi;
|
||||
] ++ stdenv.lib.optional (!isPyPy) cffi
|
||||
++ stdenv.lib.optionals isPy27 [ ipaddress ];
|
||||
|
||||
checkInputs = [
|
||||
cryptography_vectors
|
||||
|
Loading…
Reference in New Issue
Block a user