python39Packages.canonicaljson: execute tests with pytestCheckHook, disable failing test
This commit is contained in:
parent
fe734dd3bb
commit
acf4f5f2ba
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user