From acddd862546b87c73ab5bf8f26ab0b354c64cc9f Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 7 Jan 2020 14:38:31 -0800 Subject: [PATCH] python3Packages.aws-adfs: add missing requests-kerberos dependency --- pkgs/development/python-modules/aws-adfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aws-adfs/default.nix b/pkgs/development/python-modules/aws-adfs/default.nix index 0f80b03811c2..1f03ef8cb3b6 100644 --- a/pkgs/development/python-modules/aws-adfs/default.nix +++ b/pkgs/development/python-modules/aws-adfs/default.nix @@ -1,6 +1,6 @@ { lib, buildPythonPackage, fetchPypi , pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3 -, requests, click, configparser, fido2, isPy27 }: +, requests, requests-kerberos, click, configparser, fido2, isPy27 }: buildPythonPackage rec { pname = "aws-adfs"; @@ -24,7 +24,7 @@ buildPythonPackage rec { LC_ALL = "en_US.UTF-8"; checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ]; - propagatedBuildInputs = [ lxml boto3 requests click configparser fido2 ]; + propagatedBuildInputs = [ lxml boto3 requests requests-kerberos click configparser fido2 ]; meta = with lib; { description = "Command line tool to ease aws cli authentication against ADFS";