aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/aws-adfs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/aws-adfs
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/aws-adfs')
-rw-r--r--nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix33
1 files changed, 33 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 00000000000..4912e8f9994
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/aws-adfs/default.nix
@@ -0,0 +1,33 @@
+{ lib, buildPythonPackage, fetchPypi
+, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3, requests, click, configparser }:
+
+buildPythonPackage rec {
+ pname = "aws-adfs";
+ version = "1.17.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0wnsmwjpfhxilmvrqvwilcf3h9p5m5ixi5gn9bgkr3gwd2laxf54";
+ };
+
+ # 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 = [ lxml boto3 requests click configparser ];
+
+ 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 ];
+ };
+}