1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python3Packages.stumpy: 1.0 -> 1.4

This commit is contained in:
Jonathan Ringer 2020-08-07 14:16:24 -07:00 committed by Jon
parent f6988ba81b
commit 4d83f4510a

View file

@ -14,14 +14,14 @@
, codecov
}:
buildPythonPackage {
buildPythonPackage rec {
pname = "stumpy";
version = "1.0";
version = "1.4";
src = fetchFromGitHub {
owner = "TDAmeritrade";
repo = "stumpy";
rev = "115e477c1eec9291ab7c1fd8da30d67a70854f8e"; # no git version tag
rev = "v${version}";
sha256 = "0s2s3y855jjwdb7p55zx8lknplz58ghpw547yzmqisacr968b67w";
};
@ -42,8 +42,9 @@ buildPythonPackage {
codecov
];
# ignore changed numpy operations
checkPhase = ''
pytest
pytest -k 'not allc'
'';
meta = with lib; {