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