mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
python312Packages.nextcord: depends on setuptools (#354833)
This commit is contained in:
commit
1c95a7b4ba
@ -13,13 +13,13 @@
|
||||
faust-cchardet,
|
||||
orjson,
|
||||
pynacl,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nextcord";
|
||||
version = "2.6.1";
|
||||
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
@ -38,13 +38,18 @@ buildPythonPackage rec {
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
aiodns
|
||||
aiohttp
|
||||
brotli
|
||||
faust-cchardet
|
||||
orjson
|
||||
pynacl
|
||||
setuptools # for pkg_resources, remove with next release
|
||||
];
|
||||
|
||||
# upstream has no tests
|
||||
|
Loading…
Reference in New Issue
Block a user