{ lib , buildPythonPackage , isPy27 , fetchPypi , setuptools-scm , asciitree , numpy , fasteners , numcodecs , pytest }: buildPythonPackage rec { pname = "zarr"; version = "2.10.3"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "76932665c2146ebdf15f6dba254f9e0030552fbfcf9322dea822bff96fbce693"; }; 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 ]; }; }