nixpkgs/pkgs/tools/admin/aws-mfa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1001 B
Nix
Raw Normal View History

2021-01-28 07:56:06 +00:00
{ lib
, buildPythonApplication
, fetchFromGitHub
, fetchpatch
2021-01-28 07:56:06 +00:00
, boto3
}:
buildPythonApplication rec {
pname = "aws-mfa";
version = "0.0.12";
format = "setuptools";
2021-01-28 07:56:06 +00:00
src = fetchFromGitHub {
owner = "broamski";
repo = "aws-mfa";
rev = version;
hash = "sha256-XhnDri7QV8esKtx0SttWAvevE3SH2Yj2YMq/P4K6jK4=";
2021-01-28 07:56:06 +00:00
};
patches = [
# https://github.com/broamski/aws-mfa/pull/87
(fetchpatch {
name = "remove-duplicate-script.patch";
url = "https://github.com/broamski/aws-mfa/commit/0d1624022c71cb92bb4436964b87f0b2ffd677ec.patch";
hash = "sha256-Bv8ffPbDysz87wLg2Xip+0yxaBfbEmu+x6fSXI8BVjA=";
})
];
2021-01-28 07:56:06 +00:00
propagatedBuildInputs = [
boto3
];
# package has no tests
2021-01-28 07:56:06 +00:00
doCheck = false;
pythonImportsCheck = [
"awsmfa"
];
meta = with lib; {
description = "Manage AWS MFA Security Credentials";
mainProgram = "aws-mfa";
2021-01-28 07:56:06 +00:00
homepage = "https://github.com/broamski/aws-mfa";
license = licenses.mit;
2023-11-03 16:52:06 +00:00
maintainers = [ ];
2021-01-28 07:56:06 +00:00
};
}