mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
gssapi,
|
|
krb5,
|
|
ruamel-yaml,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
glibcLocales,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyspnego";
|
|
version = "0.10.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jborean93";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-60aIRrhRynbuuFZzzBhJTlmU74CWuao8jWhr126cPrc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ cryptography ];
|
|
|
|
optional-dependencies = {
|
|
kerberos = [
|
|
gssapi
|
|
krb5
|
|
];
|
|
yaml = [ ruamel-yaml ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "spnego" ];
|
|
|
|
nativeCheckInputs = [
|
|
glibcLocales
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
env.LC_ALL = "en_US.UTF-8";
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/jborean93/pyspnego/blob/v${version}/CHANGELOG.md";
|
|
description = "Python SPNEGO authentication library";
|
|
mainProgram = "pyspnego-parse";
|
|
homepage = "https://github.com/jborean93/pyspnego";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|