python3Packages.discordpy: 1.2.4 -> 1.2.5, enable, add import checks

This commit is contained in:
Jonathan Ringer 2020-01-10 11:34:18 -08:00 committed by Jon
parent 2a7e228c0c
commit 27582b6035

View file

@ -1,5 +1,5 @@
{ lib
, fetchPypi
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, withVoice ? true, libopus
@ -10,34 +10,45 @@
buildPythonPackage rec {
pname = "discord.py";
version = "1.2.4";
version = "1.2.5";
disabled = pythonOlder "3.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "3e044d84f0bb275d173e2d958cb4a579e525707f90e3e8a15c59901f79e80663";
# only distributes wheels on pypi now
src = fetchFromGitHub {
owner = "Rapptz";
repo = pname;
rev = "v${version}";
sha256 = "17l6mlfi9ikqndpmi4pwlvb53g132cycyfm9nzdyiqr96k8ly4ig";
};
propagatedBuildInputs = [ aiohttp websockets pynacl ];
propagatedBuildInputs = [ aiohttp websockets ];
patchPhase = ''
substituteInPlace "requirements.txt" \
--replace "aiohttp>=1.0.0,<1.1.0" "aiohttp"
--replace "aiohttp>=3.3.0,<3.6.0" "aiohttp~=3.3" \
--replace "websockets>=6.0,<7.0" "websockets>=6"
'' + lib.optionalString withVoice ''
substituteInPlace "discord/opus.py" \
--replace "ctypes.util.find_library('opus')" "'${libopus}/lib/libopus.so.0'"
'';
disabled = pythonOlder "3.5";
# No tests in archive
# only have integration tests with discord
doCheck = false;
pythonImportsCheck = [
"discord"
"discord.file"
"discord.member"
"discord.user"
"discord.state"
"discord.guild"
"discord.webhook"
"discord.ext.commands.bot"
];
meta = {
description = "A python wrapper for the Discord API";
homepage = "https://discordpy.rtfd.org/";
license = lib.licenses.mit;
# discord.py requires websockets<4.0
# See https://github.com/Rapptz/discord.py/issues/973
broken = true;
};
}