summary refs log tree commit diff
path: root/pkgs/development/python-modules/aws-adfs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-01 06:44:34 +0000
committerJon <jonringer@users.noreply.github.com>2020-04-01 17:22:10 -0700
commit8234f4ab49a071a20348e67f6da7ce2cc923f017 (patch)
treee144450a5a3a3c74536c7c9f53e6f454eb86b306 /pkgs/development/python-modules/aws-adfs
parent5c78b12927fd5c2b7686d5b3a9ce16febd09ddcf (diff)
downloadnixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar.gz
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar.bz2
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar.lz
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar.xz
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.tar.zst
nixpkgs-8234f4ab49a071a20348e67f6da7ce2cc923f017.zip
aws-adfs: 1.21.2 -> 1.24.3
Diffstat (limited to 'pkgs/development/python-modules/aws-adfs')
-rw-r--r--pkgs/development/python-modules/aws-adfs/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/aws-adfs/default.nix b/pkgs/development/python-modules/aws-adfs/default.nix
index 1f03ef8cb3b..20ed59f9e5b 100644
--- a/pkgs/development/python-modules/aws-adfs/default.nix
+++ b/pkgs/development/python-modules/aws-adfs/default.nix
@@ -1,15 +1,15 @@
 { lib, buildPythonPackage, fetchPypi
-, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3
+, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, botocore
 , requests, requests-kerberos, click, configparser, fido2, isPy27 }:
 
 buildPythonPackage rec {
   pname = "aws-adfs";
-  version = "1.21.2";
+  version = "1.24.3";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "ba96e71404474350b2c3ae4d5cb2dd25e9267b6d0680933c5711a51ea364e3bc";
+    sha256 = "0bcjlf5dkg2q0db0ra1ssa3hy98spflkd3ykhmlyv65rkgx8w1wv";
   };
 
   # Relax version constraint
@@ -24,11 +24,11 @@ buildPythonPackage rec {
   LC_ALL = "en_US.UTF-8";
 
   checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ];
-  propagatedBuildInputs = [ lxml boto3 requests requests-kerberos click configparser fido2 ];
+  propagatedBuildInputs = [ botocore lxml requests requests-kerberos click configparser fido2 ];
 
   meta = with lib; {
     description = "Command line tool to ease aws cli authentication against ADFS";
-    homepage = https://github.com/venth/aws-adfs;
+    homepage = "https://github.com/venth/aws-adfs";
     license = licenses.psfl;
     maintainers = [ maintainers.bhipple ];
   };