Merge pull request #138922 from fabaff/bump-pyspnego

This commit is contained in:
Sandro 2021-09-22 14:11:27 +02:00 committed by GitHub
commit e166d92c30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,9 @@
, buildPythonPackage
, cryptography
, fetchFromGitHub
, gssapi
, krb5
, ruamel-yaml
, pytest-mock
, pytestCheckHook
, pythonOlder
@ -10,18 +13,22 @@
buildPythonPackage rec {
pname = "pyspnego";
version = "0.1.6";
disabled = pythonOlder "3.6";
version = "0.2.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jborean93";
repo = pname;
rev = "v${version}";
sha256 = "0pfh2x0539f0k2qi2pbjm64b2fqp64c63xxpinvg1yfaw915kgpb";
sha256 = "sha256-puv9aq53NbjSuN561XFou404N9pIxvvMjZMgnNx3SjM=";
};
propagatedBuildInputs = [
cryptography
gssapi
krb5
ruamel-yaml
];
checkInputs = [
@ -30,6 +37,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# struct.error: unpack requires a buffer of 1 bytes
"test_credssp_invalid_client_authentication"
];
LC_ALL = "en_US.UTF-8";
pythonImportsCheck = [ "spnego" ];