python310Packages.zarr: switch to pytestCheckHook

- add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2023-03-01 10:45:01 +01:00 committed by Martin Weinelt
parent ab6528f300
commit 33bd90d82c

View File

@ -1,13 +1,13 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools-scm
, asciitree
, numpy
, buildPythonPackage
, fasteners
, fetchPypi
, numcodecs
, pytest
, numpy
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "sha256-aOxZuOvfxP7l4yvWwM4nP3L31O0BdFS0UyfGc8YJB7w=";
hash = "sha256-aOxZuOvfxP7l4yvWwM4nP3L31O0BdFS0UyfGc8YJB7w=";
};
nativeBuildInputs = [
@ -34,12 +34,12 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
pytest
pytestCheckHook
];
checkPhase = ''
pytest
'';
pythonImportsCheck = [
"zarr"
];
meta = with lib; {
description = "An implementation of chunked, compressed, N-dimensional arrays for Python";