nixpkgs/pkgs/development/python-modules/stumpy/default.nix

56 lines
928 B
Nix
Raw Normal View History

2019-07-14 22:39:12 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
, numba
, pandas
, dask
, distributed
, coverage
, flake8
, black
, pytest
, codecov
}:
2019-08-13 22:52:01 +01:00
buildPythonPackage {
2019-07-14 22:39:12 +01:00
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";
2019-07-14 22:39:12 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}