3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.twisted: add setuptools dependency

* required for buildbot test to pass
This commit is contained in:
Samuel Leathers 2019-09-13 23:51:56 -04:00
parent a412701c8d
commit 3491d523b3
No known key found for this signature in database
GPG key ID: 9BCE91C969768E0F

View file

@ -11,6 +11,7 @@
, attrs , attrs
, pyopenssl , pyopenssl
, service-identity , service-identity
, setuptools
, idna , idna
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,7 +24,7 @@ buildPythonPackage rec {
sha256 = "294be2c6bf84ae776df2fc98e7af7d6537e1c5e60a46d33c3ce2a197677da395"; sha256 = "294be2c6bf84ae776df2fc98e7af7d6537e1c5e60a46d33c3ce2a197677da395";
}; };
propagatedBuildInputs = [ zope_interface incremental automat constantly hyperlink pyhamcrest attrs ]; propagatedBuildInputs = [ zope_interface incremental automat constantly hyperlink pyhamcrest attrs setuptools ];
passthru.extras.tls = [ pyopenssl service-identity idna ]; passthru.extras.tls = [ pyopenssl service-identity idna ];