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