summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/autobahn/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-19 09:51:26 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-19 10:11:23 +0100
commita4a61777e806b844bdfb9b72298d06d5353f61ec (patch)
tree89861fdbd12222da02d129390752ee8720790cb7 /pkgs/development/python-modules/autobahn/default.nix
parent3172140c1933bd8a06a58fd2c29289516dff5680 (diff)
python.pkgs.asyncio: remove
> This version is only relevant for Python 3.3, > which does not include asyncio in its stdlib. We don't ship 3.3 anymore.
Diffstat (limited to 'pkgs/development/python-modules/autobahn/default.nix')
-rw-r--r--pkgs/development/python-modules/autobahn/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/autobahn/default.nix b/pkgs/development/python-modules/autobahn/default.nix
index d2d1e48b4c62..0ccf3da7bec9 100644
--- a/pkgs/development/python-modules/autobahn/default.nix
+++ b/pkgs/development/python-modules/autobahn/default.nix
@@ -1,5 +1,5 @@
-{ lib, buildPythonPackage, fetchPypi, isPy3k, isPy33,
- six, txaio, twisted, zope_interface, cffi, asyncio, trollius, futures,
+{ lib, buildPythonPackage, fetchPypi, isPy3k,
+ six, txaio, twisted, zope_interface, cffi, trollius, futures,
mock, pytest
}:
buildPythonPackage rec {
@@ -12,7 +12,6 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ six txaio twisted zope_interface cffi ] ++
- (lib.optional isPy33 asyncio) ++
(lib.optionals (!isPy3k) [ trollius futures ]);
checkInputs = [ mock pytest ];