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