summary refs log tree commit diff
path: root/pkgs/development/python-modules/stumpy/default.nix
blob: 71b643e5cb58fed8eb37dbd6d9bca23be0ba9520 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
, numba
, pandas
, dask
, distributed
, coverage
, flake8
, black
, pytest
, codecov
}:

buildPythonPackage {
  pname = "stumpy";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "TDAmeritrade";
    repo = "stumpy";
    rev = "115e477c1eec9291ab7c1fd8da30d67a70854f8e"; # no git version tag
    sha256 = "0s2s3y855jjwdb7p55zx8lknplz58ghpw547yzmqisacr968b67w";
  };

  propagatedBuildInputs = [
    numpy
    scipy
    numba
  ];

  checkInputs = [
    pandas
    dask
    distributed
    coverage
    flake8
    black
    pytest
    codecov
  ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "A powerful and scalable library that can be used for a variety of time series data mining tasks";
    homepage = https://github.com/TDAmeritrade/stumpy;
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}