Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
aws-google-auth: init at 0.0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam authored and worldofpeace committed Dec 1, 2018
1 parent f6e03ec commit f15aecd
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
62 changes: 62 additions & 0 deletions pkgs/tools/admin/aws-google-auth/default.nix
@@ -0,0 +1,62 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, beautifulsoup4
, boto3
, configparser
, keyring
, keyrings-alt
, lxml
, pillow
, requests
, six
, tabulate
, tzlocal
, nose
, mock
, withU2F ? false, python-u2flib-host
}:

buildPythonApplication rec {
pname = "aws-google-auth";
version = "0.0.29";

# Pypi doesn't ship the tests, so we fetch directly from GitHub
# https://github.com/cevoaustralia/aws-google-auth/issues/120
src = fetchFromGitHub {
owner = "cevoaustralia";
repo = "aws-google-auth";
rev = version;
sha256 = "06dalrwjy1sbc5wvj5ip4h999izlb0j5g6b6f3l5znnsm0vfvfia";
};

propagatedBuildInputs = [
beautifulsoup4
boto3
configparser
keyring
keyrings-alt
lxml
pillow
requests
six
tabulate
tzlocal
] ++ lib.optional withU2F python-u2flib-host;

checkInputs = [
mock
nose
];

preCheck = ''
export HOME=$TMPDIR
'';

meta = with lib; {
description = "Acquire AWS STS (temporary) credentials via Google Apps SAML Single Sign On";
homepage = https://github.com/cevoaustralia/aws-google-auth;
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -607,6 +607,8 @@ with pkgs;

aws-env = callPackage ../tools/admin/aws-env { };

aws-google-auth = pythonPackages.callPackage ../tools/admin/aws-google-auth { };

aws-okta = callPackage ../tools/security/aws-okta { };

aws-rotate-key = callPackage ../tools/admin/aws-rotate-key { };
Expand Down

0 comments on commit f15aecd

Please sign in to comment.