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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
lib,
boto3,
botocore,
buildPythonPackage,
click,
configparser,
fetchFromGitHub,
fido2,
lxml,
poetry-core,
pyopenssl,
pytestCheckHook,
requests,
requests-kerberos,
toml,
}:
buildPythonPackage rec {
pname = "aws-adfs";
version = "2.12.1";
pyproject = true;
src = fetchFromGitHub {
owner = "venth";
repo = "aws-adfs";
tag = "v${version}";
hash = "sha256-U1ptI/VynHArJ1SwX4LanHB0f4U38YZO9XDCXcLBu+s=";
};
build-system = [
poetry-core
];
pythonRelaxDeps = [
"configparser"
"fido2"
"lxml"
"requests-kerberos"
];
dependencies = [
boto3
botocore
click
configparser
fido2
lxml
pyopenssl
requests
requests-kerberos
];
nativeCheckInputs = [
pytestCheckHook
toml
];
preCheck = ''
export HOME=$(mktemp -d);
'';
pythonImportsCheck = [ "aws_adfs" ];
meta = {
description = "Command line tool to ease AWS CLI authentication against ADFS";
homepage = "https://github.com/venth/aws-adfs";
changelog = "https://github.com/venth/aws-adfs/releases/tag/${src.tag}";
license = lib.licenses.psfl;
mainProgram = "aws-adfs";
};
}
|