summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aioeventlet/default.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/aioeventlet/default.nix
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/python-modules/aioeventlet/default.nix')
-rw-r--r--pkgs/development/python-modules/aioeventlet/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/development/python-modules/aioeventlet/default.nix b/pkgs/development/python-modules/aioeventlet/default.nix
deleted file mode 100644
index ef0166e5d624..000000000000
--- a/pkgs/development/python-modules/aioeventlet/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, eventlet
-, trollius ? null
-, mock
-, python
-}:
-
-buildPythonPackage rec {
- pname = "aioeventlet";
- # version is called 0.5.1 on PyPI, but the filename is aioeventlet-0.5.2.tar.gz
- version = "0.5.2";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "cecb51ea220209e33b53cfb95124d90e4fcbee3ff8ba8a179a57120b8624b16a";
- };
-
- propagatedBuildInputs = [ eventlet trollius ];
- buildInputs = [ mock ];
-
- # 2 tests error out
- doCheck = false;
- checkPhase = ''
- ${python.interpreter} runtests.py
- '';
-
- meta = with lib; {
- description = "aioeventlet implements the asyncio API (PEP 3156) on top of eventlet. It makes";
- homepage = "https://pypi.org/project/aioeventlet/";
- license = licenses.asl20;
- };
-
-}