mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.makefun: pin to setuptools_80
and update pytest pin to 8.3.
This commit is contained in:
parent
158b6a83f7
commit
b4538c1c7c
1 changed files with 6 additions and 4 deletions
|
|
@ -4,11 +4,11 @@
|
|||
buildPythonPackage,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
setuptools_80,
|
||||
setuptools-scm,
|
||||
|
||||
# tests
|
||||
pytest7CheckHook,
|
||||
pytest8_3CheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
|
@ -27,11 +27,13 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools_80
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytest7CheckHook ];
|
||||
nativeCheckInputs = [
|
||||
pytest8_3CheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "makefun" ];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue