depot/third_party/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

76 lines
1.3 KiB
Nix

{
lib,
boto3,
botocore,
buildPythonPackage,
click,
configparser,
fetchFromGitHub,
fido2,
lxml,
poetry-core,
pyopenssl,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
requests,
requests-kerberos,
toml,
}:
buildPythonPackage rec {
pname = "aws-adfs";
version = "2.11.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "venth";
repo = "aws-adfs";
rev = "refs/tags/v${version}";
hash = "sha256-ZzQ92VBa8CApd0WkfPrUZsEZICK2fhwmt45P2sx2mK0=";
};
build-system = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"configparser"
"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 = with lib; {
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/v${version}";
license = licenses.psfl;
maintainers = with maintainers; [ bhipple ];
mainProgram = "aws-adfs";
};
}