Merge pull request #292535 from Net-Mist/unvertainties

python312Packages.uncertainties: fix build by moving from nose to pynose
This commit is contained in:
Martin Weinelt 2024-03-01 14:07:08 +01:00 committed by GitHub
commit 9efe9db64a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,9 @@
{ lib, fetchPypi, buildPythonPackage
, nose, numpy, future
{ lib
, buildPythonPackage
, fetchPypi
, future
, numpy
, pynose
}:
buildPythonPackage rec {
@ -13,10 +17,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ future ];
nativeCheckInputs = [ nose numpy ];
nativeCheckInputs = [ pynose numpy ];
checkPhase = ''
nosetests -sv
nosetests -sve test_1to2
'';
meta = with lib; {