mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #292535 from Net-Mist/unvertainties
python312Packages.uncertainties: fix build by moving from nose to pynose
This commit is contained in:
commit
9efe9db64a
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user