about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix b/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix
new file mode 100644
index 000000000000..ce4c6f789263
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix
@@ -0,0 +1,35 @@
+{ lib, buildPythonPackage, fetchPypi
+, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, botocore
+, requests, requests-kerberos, click, configparser, fido2, isPy27 }:
+
+buildPythonPackage rec {
+  pname = "aws-adfs";
+  version = "1.24.5";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "6a78bd31477ea9988166215ae86abcbfe1413bee20373ecdf0dd170b7290db55";
+  };
+
+  # Relax version constraint
+  patchPhase = ''
+    sed -i 's/coverage < 4/coverage/' setup.py
+  '';
+
+  # Test suite writes files to $HOME/.aws/, or /homeless-shelter if unset
+  HOME = ".";
+
+  # Required for python3 tests, along with glibcLocales
+  LC_ALL = "en_US.UTF-8";
+
+  checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ];
+  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";
+    license = licenses.psfl;
+    maintainers = [ maintainers.bhipple ];
+  };
+}