python.pkgs.eventlet: update propagatedBuildInputs

This commit is contained in:
Robert Schütz 2018-12-02 22:27:30 +01:00 committed by Frederik Rietdijk
parent 1d25f001bd
commit a568a9e79b

View File

@ -1,12 +1,13 @@
{ stdenv { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose , pythonOlder
, httplib2 , dnspython
, pyopenssl , enum34
, greenlet , greenlet
, enum-compat , monotonic
, isPyPy , six
, nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -18,14 +19,13 @@ buildPythonPackage rec {
sha256 = "d9d31a3c8dbcedbcce5859a919956d934685b17323fc80e1077cb344a2ffa68d"; sha256 = "d9d31a3c8dbcedbcce5859a919956d934685b17323fc80e1077cb344a2ffa68d";
}; };
buildInputs = [ nose httplib2 pyopenssl ]; checkInputs = [ nose ];
doCheck = false; # too much transient errors to bother doCheck = false; # too much transient errors to bother
propagatedBuildInputs = [ enum-compat ] propagatedBuildInputs = [ dnspython greenlet monotonic six ] ++ lib.optional (pythonOlder "3.4") enum34;
++ stdenv.lib.optionals (!isPyPy) [ greenlet ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://pypi.python.org/pypi/eventlet/; homepage = https://pypi.python.org/pypi/eventlet/;
description = "A concurrent networking library for Python"; description = "A concurrent networking library for Python";
}; };