python311Packages.pint: fix pint-convert executable

By propagating numpy and uncertainties inputs.
This commit is contained in:
Doron Behar 2024-06-14 17:21:19 +03:00
parent 3c69550446
commit 45e59249d6

View File

@ -47,15 +47,18 @@ buildPythonPackage rec {
flexcache
flexparser
typing-extensions
# Both uncertainties and numpy are not necessarily needed for every
# function of pint, but needed for the pint-convert executable which we
# necessarily distribute with this package as it is.
uncertainties
numpy
];
nativeCheckInputs = [
pytestCheckHook
pytest-subtests
pytest-benchmark
numpy
matplotlib
uncertainties
];
pytestFlagsArray = [ "--benchmark-disable" ];