Merge pull request #138922 from fabaff/bump-pyspnego

authored by Sandro and committed by GitHub e166d92c 8fbc60de

+15 -3
+15 -3
pkgs/development/python-modules/pyspnego/default.nix
··· 2 2 , buildPythonPackage 3 3 , cryptography 4 4 , fetchFromGitHub 5 + , gssapi 6 + , krb5 7 + , ruamel-yaml 5 8 , pytest-mock 6 9 , pytestCheckHook 7 10 , pythonOlder ··· 10 13 11 14 buildPythonPackage rec { 12 15 pname = "pyspnego"; 13 - version = "0.1.6"; 14 - disabled = pythonOlder "3.6"; 16 + version = "0.2.0"; 17 + 18 + disabled = pythonOlder "3.7"; 15 19 16 20 src = fetchFromGitHub { 17 21 owner = "jborean93"; 18 22 repo = pname; 19 23 rev = "v${version}"; 20 - sha256 = "0pfh2x0539f0k2qi2pbjm64b2fqp64c63xxpinvg1yfaw915kgpb"; 24 + sha256 = "sha256-puv9aq53NbjSuN561XFou404N9pIxvvMjZMgnNx3SjM="; 21 25 }; 22 26 23 27 propagatedBuildInputs = [ 24 28 cryptography 29 + gssapi 30 + krb5 31 + ruamel-yaml 25 32 ]; 26 33 27 34 checkInputs = [ 28 35 glibcLocales 29 36 pytest-mock 30 37 pytestCheckHook 38 + ]; 39 + 40 + disabledTests = [ 41 + # struct.error: unpack requires a buffer of 1 bytes 42 + "test_credssp_invalid_client_authentication" 31 43 ]; 32 44 33 45 LC_ALL = "en_US.UTF-8";