Merge pull request #288112 from patka-123/python311Packages-correctionlib

python311Packages.correctionlib: fix build
This commit is contained in:
Martin Weinelt 2024-02-11 21:57:33 +01:00 committed by GitHub
commit 4cf1063b7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ lib
, fsspec
, stdenv
, buildPythonPackage
, pythonOlder
@ -10,7 +11,6 @@
, numpy
, packaging
, typing-extensions
, fsspec
, jax
, jaxlib
, numba
@ -43,6 +43,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
awkward-cpp
fsspec
importlib-metadata
numpy
packaging

View file

@ -7,6 +7,7 @@
, setuptools
, setuptools-scm
, wheel
, packaging
, pybind11
, pydantic
, rich
@ -28,11 +29,9 @@ buildPythonPackage rec {
nativeBuildInputs = [
cmake
numpy
scikit-build
setuptools
setuptools-scm
wheel
pybind11
];
@ -41,6 +40,8 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
numpy
packaging
pydantic
rich
];