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

49 lines
801 B
Nix
Raw Normal View History

2019-07-18 13:37:12 +00:00
{ lib
, buildPythonPackage
, isPy27
2019-07-18 13:37:12 +00:00
, fetchPypi
, setuptools-scm
2019-07-18 13:37:12 +00:00
, asciitree
, numpy
, fasteners
, numcodecs
, pytest
}:
buildPythonPackage rec {
pname = "zarr";
2021-06-18 21:47:43 +00:00
version = "2.8.3";
disabled = isPy27;
2019-07-18 13:37:12 +00:00
src = fetchPypi {
inherit pname version;
2021-06-18 21:47:43 +00:00
sha256 = "8aece33269ba3ee2af9320aa528d5fe93f76c30e4ad7fdbfb604b1db3f0d779f";
2019-07-18 13:37:12 +00:00
};
nativeBuildInputs = [
setuptools-scm
2019-07-18 13:37:12 +00:00
];
propagatedBuildInputs = [
asciitree
numpy
fasteners
numcodecs
];
checkInputs = [
pytest
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "An implementation of chunked, compressed, N-dimensional arrays for Python";
homepage = "https://github.com/zarr-developers/zarr";
2019-07-18 13:37:12 +00:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}