13 buildPythonPackage rec {
18 inherit pname version;
19 sha256 = "d00649a7e17de0bcddff1a96311ed3baf1b295b3223d4b71aceafe7b45e6d6f8";
22 propagatedBuildInputs = [ dnspython greenlet monotonic six ]
23 ++ lib.optional (pythonOlder "3.4") enum34;
26 substituteInPlace setup.py \
27 --replace "dnspython >= 1.15.0, < 2.0.0" "dnspython"
30 checkInputs = [ nose ];
32 doCheck = false; # too much transient errors to bother
34 # unfortunately, it needs /etc/protocol to be present to not fail
35 #pythonImportsCheck = [ "eventlet" ];
38 homepage = "https://pypi.python.org/pypi/eventlet/";
39 description = "A concurrent networking library for Python";
40 license = licenses.mit;