discordpy: 1.3.4 -> 1.5.1

This commit is contained in:
IvarWithoutBones 2020-10-23 03:59:42 +02:00
parent 2e1d089b54
commit 0332c423ce

View file

@ -5,12 +5,11 @@
, withVoice ? true, libopus
, aiohttp
, websockets
, pynacl
}:
buildPythonPackage rec {
pname = "discord.py";
version = "1.3.4";
version = "1.5.1";
disabled = pythonOlder "3.5.3";
# only distributes wheels on pypi now
@ -18,7 +17,7 @@ buildPythonPackage rec {
owner = "Rapptz";
repo = pname;
rev = "v${version}";
sha256 = "1i4h6vq681x8s05wi0n3ykavsxjh9hxdxn6banwjcqzhxzkyhsxi";
sha256 = "1bidyclwv20p1kfphj21r5gm3kr2vxx0zd151wg7fcngbbx7gmza";
};
propagatedBuildInputs = [ aiohttp websockets ];
@ -31,7 +30,6 @@ buildPythonPackage rec {
--replace "ctypes.util.find_library('opus')" "'${libopus}/lib/libopus.so.0'"
'';
# only have integration tests with discord
doCheck = false;
@ -46,9 +44,10 @@ buildPythonPackage rec {
"discord.ext.commands.bot"
];
meta = {
meta = with lib; {
description = "A python wrapper for the Discord API";
homepage = "https://discordpy.rtfd.org/";
license = lib.licenses.mit;
homepage = "https://discordpy.rtfd.org/";
maintainers = [ maintainers.ivar ];
license = licenses.mit;
};
}