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

48 lines
872 B
Nix

{ lib
, buildPythonPackage
, dask
, fetchPypi
, numba
, numpy
, pytestCheckHook
, pythonOlder
, scipy
}:
buildPythonPackage rec {
pname = "sparse";
version = "0.14.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-X1gno39s1vZzClQfmUyVxgo64jKeAfS6Ic7VM5rqAJg=";
};
propagatedBuildInputs = [
numba
numpy
scipy
];
nativeCheckInputs = [
dask
pytestCheckHook
];
pythonImportsCheck = [
"sparse"
];
meta = with lib; {
description = "Sparse n-dimensional arrays computations";
homepage = "https://sparse.pydata.org/";
changelog = "https://sparse.pydata.org/en/stable/changelog.html";
downloadPage = "https://github.com/pydata/sparse/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}