mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, scipy
|
|
, numba
|
|
, pandas
|
|
, dask
|
|
, distributed
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stumpy";
|
|
version = "1.11.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TDAmeritrade";
|
|
repo = "stumpy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ARpXqZpWkbvIEDVkxA1SwlWoxq+3WO6tvv/e7WZ/25c=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
scipy
|
|
numba
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pandas
|
|
dask
|
|
distributed
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"stumpy"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# whole testsuite is very CPU intensive, only run core tests
|
|
# TODO: move entire test suite to passthru.tests
|
|
"tests/test_core.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library that can be used for a variety of time series data mining tasks";
|
|
homepage = "https://github.com/TDAmeritrade/stumpy";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|