1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

Merge pull request #325567 from con-f-use/check_manifest_add_setuptools

python312Packages.check-manifest: missing setuptools dependency
This commit is contained in:
lewo 2024-07-11 19:36:16 +02:00 committed by GitHub
commit 9e694d8b87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,7 @@
git,
pep517,
pytestCheckHook,
setuptools,
tomli,
pythonOlder,
}:
@ -26,6 +27,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
build
pep517
setuptools
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [