summary refs log tree commit diff
path: root/pkgs/development/python-modules/aws-adfs
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2019-09-05 23:59:20 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2019-09-09 22:38:15 -0400
commit7b4132f99e2977bb33fc5b085bd18320e886be77 (patch)
tree988b347f0056b6221f3cf9d9a13592e20d363044 /pkgs/development/python-modules/aws-adfs
parenta10ba70aa22fef699d075f6704b850764b1e8208 (diff)
downloadnixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar.gz
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar.bz2
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar.lz
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar.xz
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.tar.zst
nixpkgs-7b4132f99e2977bb33fc5b085bd18320e886be77.zip
aws-adfs: 1.12.3 -> 1.17.0
This commit also adds it as an application in all-packages.nix, since it's
typically used as just a stand-alone cmdline tool.
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 9e761b3698d..4912e8f9994 100644
--- a/pkgs/development/python-modules/aws-adfs/default.nix
+++ b/pkgs/development/python-modules/aws-adfs/default.nix
@@ -2,12 +2,12 @@
 , pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3, requests, click, configparser }:
 
 buildPythonPackage rec {
-  version = "1.12.3";
   pname = "aws-adfs";
+  version = "1.17.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "b7df3fbe0572eb12294b2e072327ca97fd94d435b39cc10612e460cde914b831";
+    sha256 = "0wnsmwjpfhxilmvrqvwilcf3h9p5m5ixi5gn9bgkr3gwd2laxf54";
   };
 
   # Relax version constraint
@@ -24,10 +24,10 @@ buildPythonPackage rec {
   checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ];
   propagatedBuildInputs = [ lxml boto3 requests click configparser ];
 
-  meta = {
+  meta = with lib; {
     description = "Command line tool to ease aws cli authentication against ADFS";
     homepage = https://github.com/venth/aws-adfs;
-    license = lib.licenses.psfl;
-    maintainers = [ lib.maintainers.bhipple ];
+    license = licenses.psfl;
+    maintainers = [ maintainers.bhipple ];
   };
 }