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

41 lines
672 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-06-02 13:26:17 +01:00
, isPy3k
2020-07-03 12:44:07 -07:00
, dask
, numpy
, scipy
, numba
, pytest
}:
buildPythonPackage rec {
pname = "sparse";
2020-10-01 07:56:22 +00:00
version = "0.11.2";
2019-06-02 13:26:17 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-10-01 07:56:22 +00:00
sha256 = "bc5c35dbc81242237feb7a8e1f7d9c5e9dd9bb0910f6ec55f50dcc379082864f";
};
2020-07-03 12:44:07 -07:00
checkInputs = [ pytest dask ];
propagatedBuildInputs = [
numpy
scipy
numba
];
checkPhase = ''
pytest sparse
'';
meta = with lib; {
description = "Sparse n-dimensional arrays computations";
homepage = "https://github.com/pydata/sparse/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}