Merge pull request #119017 from fabaff/bump-pykwalify

python3Packages.pykwalify: 1.7.0 -> 1.8.0

authored by Sandro and committed by GitHub 42f3ca24 baf5e666

+18 -10
+18 -10
pkgs/development/python-modules/pykwalify/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , dateutil, docopt, pyyaml 3 - , pytest, testfixtures 1 + { lib 2 + , buildPythonPackage 3 + , dateutil 4 + , docopt 5 + , fetchPypi 6 + , pytestCheckHook 7 + , pyyaml 8 + , ruamel-yaml 9 + , testfixtures 4 10 }: 5 11 6 12 buildPythonPackage rec { 7 - version = "1.7.0"; 13 + version = "1.8.0"; 8 14 pname = "pykwalify"; 9 15 10 16 src = fetchPypi { 11 17 inherit pname version; 12 - sha256 = "1cnfzkg1b01f825ikpw2fhjclf9c8akxjfrbd1vc22x1lg2kk2vy"; 18 + sha256 = "sha256-eWsq0+1MuZuIMItTP7L1WcMPpu+0+p/aETR/SD0kWIQ="; 13 19 }; 14 20 15 21 propagatedBuildInputs = [ 16 22 dateutil 17 23 docopt 18 24 pyyaml 25 + ruamel-yaml 19 26 ]; 20 27 21 28 checkInputs = [ 22 - pytest 29 + pytestCheckHook 23 30 testfixtures 24 31 ]; 25 32 26 - checkPhase = '' 27 - pytest \ 28 - -k 'not test_multi_file_support' 29 - ''; 33 + disabledTests = [ 34 + "test_multi_file_support" 35 + ]; 36 + 37 + pythonImportsCheck = [ "pykwalify" ]; 30 38 31 39 meta = with lib; { 32 40 homepage = "https://github.com/Grokzen/pykwalify";