lol

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

authored by

Sandro Jäckel and committed by
Martin Weinelt
acf4f5f2 fe734dd3

+17 -3
+17 -3
pkgs/development/python-modules/canonicaljson/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , frozendict, simplejson, six, isPy27 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , frozendict 5 + , simplejson 6 + , six 7 + , isPy27 8 + , pytestCheckHook 3 9 }: 4 10 5 11 buildPythonPackage rec { ··· 13 19 }; 14 20 15 21 propagatedBuildInputs = [ 16 - frozendict simplejson six 22 + frozendict 23 + simplejson 24 + six 25 + ]; 26 + 27 + checkInputs = [ pytestCheckHook ]; 28 + 29 + disabledTests = [ 30 + "test_frozen_dict" 17 31 ]; 18 32 19 33 meta = with lib; {