Skip to content

Commit

Permalink
python312Packages.nextcord: depends on setuptools (NixOS#354833)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored Nov 13, 2024
2 parents b41355d + 9b83f4c commit 1c95a7b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/nextcord/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand All @@ -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
Expand Down

0 comments on commit 1c95a7b

Please sign in to comment.