Skip to content

Commit

Permalink
pythonPackages.zarr: init at 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Jul 22, 2019
1 parent e1f3e22 commit f13e25d
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/development/python-modules/zarr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, asciitree
, numpy
, fasteners
, numcodecs
, pytest
}:

buildPythonPackage rec {
pname = "zarr";
version = "2.3.2";

src = fetchPypi {
inherit pname version;
sha256 = "c62d0158fb287151c978904935a177b3d2d318dea3057cfbeac8541915dfa105";
};

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3889,6 +3889,8 @@ in {

zake = callPackage ../development/python-modules/zake { };

zarr = callPackage ../development/python-modules/zarr { };

kazoo = callPackage ../development/python-modules/kazoo { };

FormEncode = callPackage ../development/python-modules/FormEncode { };
Expand Down

0 comments on commit f13e25d

Please sign in to comment.