python39Packages.canonicaljson: execute tests with pytestCheckHook, disable failing test

This commit is contained in:
Sandro Jäckel
2021-09-01 21:23:26 +02:00
committed by Martin Weinelt
parent 7eee03c355
commit 825752cefa
@@ -1,5 +1,11 @@
{ lib, buildPythonPackage, fetchPypi
, frozendict, simplejson, six, isPy27
{ lib
, buildPythonPackage
, fetchPypi
, frozendict
, simplejson
, six
, isPy27
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -13,7 +19,15 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
frozendict simplejson six
frozendict
simplejson
six
];
checkInputs = [ pytestCheckHook ];
disabledTests = [
"test_frozen_dict"
];
meta = with lib; {