pythonPackages.awkward1: use pytestCheckHook

This commit is contained in:
Dmitry Kalinkin 2020-04-11 11:01:27 -04:00
parent ab1c67eacd
commit 5c72e84169
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -4,7 +4,7 @@
, cmake
, numba
, numpy
, pytest
, pytestCheckHook
, rapidjson
}:
@ -23,10 +23,8 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true;
checkInputs = [ pytest numba ];
checkPhase = ''
py.test
'';
checkInputs = [ pytestCheckHook numba ];
dontUseSetuptoolsCheck = true;
meta = with lib; {
description = "Manipulate JSON-like data with NumPy-like idioms";