56 lines
1010 B
Nix
56 lines
1010 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, gssapi
|
|
, krb5
|
|
, ruamel-yaml
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, glibcLocales
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyspnego";
|
|
version = "0.5.0";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jborean93";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CvPvyP7Vi2Ib+ikgUQt8JkVt5fxzapG590TgAehXqHE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
gssapi
|
|
krb5
|
|
ruamel-yaml
|
|
];
|
|
|
|
checkInputs = [
|
|
glibcLocales
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# struct.error: unpack requires a buffer of 1 bytes
|
|
"test_credssp_invalid_client_authentication"
|
|
];
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
pythonImportsCheck = [ "spnego" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python SPNEGO authentication library";
|
|
homepage = "https://github.com/jborean93/pyspnego";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|