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

This commit is contained in:
Sandro Jäckel 2021-08-31 18:15:37 +02:00 committed by Martin Weinelt
parent fe734dd3bb
commit acf4f5f2ba

View File

@ -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; {