2018-12-02 21:27:30 +00:00
|
|
|
{ lib
|
2018-10-16 19:37:33 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-12-02 21:27:30 +00:00
|
|
|
, pythonOlder
|
|
|
|
, dnspython
|
|
|
|
, enum34
|
2018-10-16 19:37:33 +01:00
|
|
|
, greenlet
|
2018-12-02 21:27:30 +00:00
|
|
|
, monotonic
|
|
|
|
, six
|
|
|
|
, nose
|
2018-10-16 19:37:33 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "eventlet";
|
2020-08-16 18:30:59 +01:00
|
|
|
version = "0.26.1";
|
2018-10-16 19:37:33 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:59 +01:00
|
|
|
sha256 = "4f4a43366b4cbd4a3f2f231816e5c3dae8ab316df9b7da11f0525e2800559f33";
|
2018-10-16 19:37:33 +01:00
|
|
|
};
|
|
|
|
|
2018-12-02 21:27:30 +00:00
|
|
|
checkInputs = [ nose ];
|
2018-10-16 19:37:33 +01:00
|
|
|
|
|
|
|
doCheck = false; # too much transient errors to bother
|
|
|
|
|
2018-12-02 21:27:30 +00:00
|
|
|
propagatedBuildInputs = [ dnspython greenlet monotonic six ] ++ lib.optional (pythonOlder "3.4") enum34;
|
2018-10-16 19:37:33 +01:00
|
|
|
|
2018-12-02 21:27:30 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/eventlet/";
|
2018-10-16 19:37:33 +01:00
|
|
|
description = "A concurrent networking library for Python";
|
2020-08-17 04:42:31 +01:00
|
|
|
license = licenses.mit;
|
2018-10-16 19:37:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|