blob: 176d8b43e45dc9fd5d4dbc6f35ef48101b639f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchPypi,
gssapi,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "requests-gssapi";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-TVK/jCqiqCkTDvzKhcFJQ/3QqnVFWquYWyuHJhWcIMo=";
};
build-system = [ setuptools ];
dependencies = [
gssapi
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "requests_gssapi" ];
meta = {
description = "GSSAPI authentication handler for python-requests";
homepage = "https://github.com/pythongssapi/requests-gssapi";
changelog = "https://github.com/pythongssapi/requests-gssapi/blob/v${version}/HISTORY.rst";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ javimerino ];
};
}
|