pythonPackages.zarr: init at 2.3.2
This commit is contained in:
parent
d383eade73
commit
62cb4f7228
2 changed files with 48 additions and 0 deletions
46
pkgs/development/python-modules/zarr/default.nix
Normal file
46
pkgs/development/python-modules/zarr/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -3901,6 +3901,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 { };
|
||||
|
|
Loading…
Reference in a new issue