python310Packages.stumpy: add pythonImportsCheck
This commit is contained in:
parent
208b83c576
commit
0aae17ec5a
1 changed files with 11 additions and 3 deletions
|
@ -8,17 +8,21 @@
|
||||||
, dask
|
, dask
|
||||||
, distributed
|
, distributed
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "stumpy";
|
pname = "stumpy";
|
||||||
version = "1.11.1";
|
version = "1.11.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TDAmeritrade";
|
owner = "TDAmeritrade";
|
||||||
repo = "stumpy";
|
repo = "stumpy";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-ARpXqZpWkbvIEDVkxA1SwlWoxq+3WO6tvv/e7WZ/25c=";
|
hash = "sha256-ARpXqZpWkbvIEDVkxA1SwlWoxq+3WO6tvv/e7WZ/25c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -34,6 +38,10 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"stumpy"
|
||||||
|
];
|
||||||
|
|
||||||
pytestFlagsArray = [
|
pytestFlagsArray = [
|
||||||
# whole testsuite is very CPU intensive, only run core tests
|
# whole testsuite is very CPU intensive, only run core tests
|
||||||
# TODO: move entire test suite to passthru.tests
|
# TODO: move entire test suite to passthru.tests
|
||||||
|
@ -41,9 +49,9 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A powerful and scalable library that can be used for a variety of time series data mining tasks";
|
description = "Library that can be used for a variety of time series data mining tasks";
|
||||||
homepage = "https://github.com/TDAmeritrade/stumpy";
|
homepage = "https://github.com/TDAmeritrade/stumpy";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue