summary refs log tree commit diff
path: root/pkgs/development/python-modules/discordpy
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/discordpy
parent3172140c1933bd8a06a58fd2c29289516dff5680 (diff)
downloadnixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar.gz
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar.bz2
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar.lz
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar.xz
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.tar.zst
nixpkgs-a4a61777e806b844bdfb9b72298d06d5353f61ec.zip
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/discordpy')
-rw-r--r--pkgs/development/python-modules/discordpy/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/discordpy/default.nix b/pkgs/development/python-modules/discordpy/default.nix
index e548781fde6..41188a0de6e 100644
--- a/pkgs/development/python-modules/discordpy/default.nix
+++ b/pkgs/development/python-modules/discordpy/default.nix
@@ -3,7 +3,6 @@
 , buildPythonPackage
 , pythonOlder
 , withVoice ? true, libopus
-, asyncio
 , aiohttp
 , websockets
 , pynacl
@@ -18,7 +17,7 @@ buildPythonPackage rec {
     sha256 = "17fb8814100fbaf7a79468baa432184db6cef3bbea4ad194fe297c7407d50108";
   };
 
-  propagatedBuildInputs = [ asyncio aiohttp websockets pynacl ];
+  propagatedBuildInputs = [ aiohttp websockets pynacl ];
   patchPhase = ''
     substituteInPlace "requirements.txt" \
       --replace "aiohttp>=1.0.0,<1.1.0" "aiohttp"