2018-11-21 00:35:16 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchFromGitHub
|
|
|
|
, beautifulsoup4
|
|
|
|
, boto3
|
|
|
|
, configparser
|
2020-10-28 19:18:45 +01:00
|
|
|
, filelock
|
2018-11-21 00:35:16 +01:00
|
|
|
, keyring
|
|
|
|
, keyrings-alt
|
|
|
|
, lxml
|
|
|
|
, pillow
|
|
|
|
, requests
|
|
|
|
, six
|
|
|
|
, tabulate
|
|
|
|
, tzlocal
|
|
|
|
, nose
|
|
|
|
, mock
|
|
|
|
, withU2F ? false, python-u2flib-host
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "aws-google-auth";
|
2021-03-02 16:56:03 +01:00
|
|
|
version = "0.0.37";
|
2018-11-21 00:35:16 +01:00
|
|
|
|
|
|
|
# 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;
|
2021-03-02 16:56:03 +01:00
|
|
|
sha256 = "1bh733n4m5rsslpbjvhdigx6768nrvacybkakrm9704d2md9vkqd";
|
2018-11-21 00:35:16 +01:00
|
|
|
};
|
|
|
|
|
2020-10-28 19:18:45 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-11-21 00:35:16 +01:00
|
|
|
beautifulsoup4
|
|
|
|
boto3
|
|
|
|
configparser
|
2020-10-28 19:18:45 +01:00
|
|
|
filelock
|
2018-11-21 00:35:16 +01:00
|
|
|
keyring
|
|
|
|
keyrings-alt
|
|
|
|
lxml
|
|
|
|
pillow
|
|
|
|
requests
|
|
|
|
six
|
|
|
|
tabulate
|
|
|
|
tzlocal
|
|
|
|
] ++ lib.optional withU2F python-u2flib-host;
|
2020-10-28 19:18:45 +01:00
|
|
|
|
|
|
|
checkInputs = [
|
2018-11-21 00:35:16 +01:00
|
|
|
mock
|
2020-10-28 19:18:45 +01:00
|
|
|
nose
|
2018-11-21 00:35:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Acquire AWS STS (temporary) credentials via Google Apps SAML Single Sign On";
|
2020-03-01 10:16:22 +01:00
|
|
|
homepage = "https://github.com/cevoaustralia/aws-google-auth";
|
2018-11-21 00:35:16 +01:00
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|