1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 08:29:20 +03:00
nixpkgs/pkgs/development/python-modules/stumpy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
783 B
Nix
Raw Normal View History

2019-07-14 17:39:12 -04:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
, numba
, pandas
, dask
, distributed
, pytestCheckHook
2019-07-14 17:39:12 -04:00
}:
2020-08-07 14:16:24 -07:00
buildPythonPackage rec {
2019-07-14 17:39:12 -04:00
pname = "stumpy";
version = "1.10.2";
2019-07-14 17:39:12 -04:00
src = fetchFromGitHub {
owner = "TDAmeritrade";
repo = "stumpy";
2020-08-07 14:16:24 -07:00
rev = "v${version}";
sha256 = "1v17lxqgvkd3n33c2y1j1zy74xy92vsx2l89yhan89msnnb7aafr";
2019-07-14 17:39:12 -04:00
};
propagatedBuildInputs = [
numpy
scipy
numba
];
checkInputs = [
pandas
dask
distributed
pytestCheckHook
2019-07-14 17:39:12 -04:00
];
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 17:39:12 -04:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}