nixpkgs/pkgs/development/python-modules/zarr/default.nix
Jonathan Ringer fb6d6a518c python3Packages.zarr: disable <python3.5
```
  Processing ./zarr-2.4.0-py2-none-any.whl
  ERROR: Package 'zarr' requires a different Python: 2.7.18 not in '>=3.5'
```
2020-08-30 09:11:03 +02:00

49 lines
801 B
Nix

{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, setuptools_scm
, asciitree
, numpy
, fasteners
, numcodecs
, pytest
}:
buildPythonPackage rec {
pname = "zarr";
version = "2.4.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "53aa21b989a47ddc5e916eaff6115b824c0864444b1c6f3aaf4f6cf9a51ed608";
};
nativeBuildInputs = [
setuptools_scm
];
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";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}