python312Packages.aws-adfs: relax requests-kerberos

This commit is contained in:
Fabian Affolter
2024-06-21 08:41:13 +02:00
parent 17f4944c59
commit e9d6e68be9
@@ -27,19 +27,22 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "venth";
repo = pname;
repo = "aws-adfs";
rev = "refs/tags/v${version}";
hash = "sha256-ZzQ92VBa8CApd0WkfPrUZsEZICK2fhwmt45P2sx2mK0=";
};
nativeBuildInputs = [
build-system = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [ "configparser" ];
pythonRelaxDeps = [
"configparser"
"requests-kerberos"
];
propagatedBuildInputs = [
dependencies = [
boto3
botocore
click
@@ -64,10 +67,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Command line tool to ease AWS CLI authentication against ADFS";
mainProgram = "aws-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";
};
}