mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, withVoice ? true, libopus
|
|
, aiohttp
|
|
, websockets
|
|
, pynacl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "discord.py";
|
|
version = "1.2.5";
|
|
disabled = pythonOlder "3.5.3";
|
|
|
|
# only distributes wheels on pypi now
|
|
src = fetchFromGitHub {
|
|
owner = "Rapptz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "17l6mlfi9ikqndpmi4pwlvb53g132cycyfm9nzdyiqr96k8ly4ig";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aiohttp websockets ];
|
|
patchPhase = ''
|
|
substituteInPlace "requirements.txt" \
|
|
--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'"
|
|
'';
|
|
|
|
|
|
# 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;
|
|
};
|
|
}
|