mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.nptyping: migrate to pyproject
(cherry picked from commit eab8b58d1c)
This commit is contained in:
parent
3f41b4ad3d
commit
5b4f11ff16
1 changed files with 5 additions and 2 deletions
|
|
@ -3,6 +3,7 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
beartype,
|
||||
invoke,
|
||||
numpy,
|
||||
|
|
@ -13,7 +14,7 @@
|
|||
buildPythonPackage (finalAttrs: {
|
||||
pname = "nptyping";
|
||||
version = "2.5.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
|
|
@ -28,7 +29,9 @@ buildPythonPackage (finalAttrs: {
|
|||
./numpy-2.0-compat.patch
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ numpy ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
beartype
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue