mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 12:34:00 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
84 lines
1.5 KiB
Nix
84 lines
1.5 KiB
Nix
{ lib
|
|
, boto3
|
|
, botocore
|
|
, buildPythonPackage
|
|
, click
|
|
, configparser
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, fido2
|
|
, lxml
|
|
, poetry-core
|
|
, pyopenssl
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, requests-kerberos
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aws-adfs";
|
|
version = "2.2.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "venth";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-REJYuOGq22onMj4WcfA7i4/cG99UGZA9D99ESIKY1A8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
botocore
|
|
click
|
|
configparser
|
|
fido2
|
|
lxml
|
|
pyopenssl
|
|
requests
|
|
requests-kerberos
|
|
];
|
|
|
|
patches = [
|
|
# Apply new fido2 api (See: venth/aws-adfs#243)
|
|
(fetchpatch {
|
|
url = "https://github.com/venth/aws-adfs/commit/09836d89256f3537270d760d8aa30ab9284725a8.diff";
|
|
hash = "sha256-pAAJvOa43BXtyWvV8hsLe2xqd5oI+vzndckRTRol61s=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'boto3 = "^1.20.50"' 'boto3 = "*"' \
|
|
--replace 'botocore = ">=1.12.6"' 'botocore = "*"'
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
toml
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"aws_adfs"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool to ease AWS CLI authentication against ADFS";
|
|
homepage = "https://github.com/venth/aws-adfs";
|
|
license = licenses.psfl;
|
|
maintainers = with maintainers; [ bhipple ];
|
|
};
|
|
}
|