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