nixpkgs/pkgs/development/python-modules/pyspnego/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

68 lines
1.2 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
];
passthru.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 ];
};
}