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.
This commit is contained in:
Robert Schütz
2019-03-19 09:51:26 +01:00
parent 3172140c19
commit a4a61777e8
8 changed files with 6 additions and 37 deletions

View File

@@ -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"