blob: 491af1105dae740b7aef64a9e27d87ac5c5c3d92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
, numba
, pandas
, dask
, distributed
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "stumpy";
version = "1.12.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "TDAmeritrade";
repo = "stumpy";
rev = "refs/tags/v${version}";
hash = "sha256-rVl3tIx8iWx2mnaix3V5YnfWWdPBTP8+K2JJKTfctDA=";
};
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; [ ];
};
}
|