Merge pull request #28884 from FRidh/python-fixes

Python: several fixes
This commit is contained in:
Frederik Rietdijk
2017-09-05 11:16:41 +02:00
committed by Frederik Rietdijk
parent 036bafe0b9
commit 67651d80bc
71 changed files with 1365 additions and 761 deletions

View File

@@ -11,13 +11,13 @@
let
pname = "discord.py";
version = "0.16.10";
version = "0.16.11";
in buildPythonPackage rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
sha256 = "cb0b9ad5f5edf2d5afd5f5ce07381a0a089eb036004938126a5582fc8fa0cc88";
sha256 = "eb3c6faa7d4570cce05533d0742bbcb768629e2b3ba9e1cc79c05833db91ac4d";
};
propagatedBuildInputs = [ asyncio aiohttp websockets pynacl ];
@@ -31,6 +31,9 @@ in buildPythonPackage rec {
disabled = pythonOlder "3.5";
# No tests in archive
doCheck = false;
meta = {
description = "A python wrapper for the Discord API";
homepage = "https://discordpy.rtfd.org/";