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

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

49 lines
789 B
Nix
Raw Normal View History

2019-07-18 14:37:12 +01:00
{ lib
, buildPythonPackage
, isPy27
2019-07-18 14:37:12 +01:00
, fetchPypi
, setuptools-scm
2019-07-18 14:37:12 +01:00
, asciitree
, numpy
, fasteners
, numcodecs
, pytest
}:
buildPythonPackage rec {
pname = "zarr";
2022-03-31 00:05:20 +01:00
version = "2.11.1";
disabled = isPy27;
2019-07-18 14:37:12 +01:00
src = fetchPypi {
inherit pname version;
2022-03-31 00:05:20 +01:00
sha256 = "sha256-EbYo9C3sNuAUeHnovUcVJLWbI4CUubIePDW+eDmcEV4=";
2019-07-18 14:37:12 +01:00
};
nativeBuildInputs = [
setuptools-scm
2019-07-18 14:37:12 +01: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 14:37:12 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}