mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
aws-mfa: fix script duplication when installing with installer
This commit is contained in:
parent
b2d45d788a
commit
5ca4089d6f
@ -1,24 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, boto3
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "aws-mfa";
|
||||
version = "0.0.12";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "broamski";
|
||||
repo = "aws-mfa";
|
||||
rev = version;
|
||||
sha256 = "1blcpa13zgyac3v8inc7fh9szxq2avdllx6w5ancfmyh5spc66ay";
|
||||
hash = "sha256-XhnDri7QV8esKtx0SttWAvevE3SH2Yj2YMq/P4K6jK4=";
|
||||
};
|
||||
|
||||
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=";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
boto3
|
||||
];
|
||||
|
||||
# package has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
@ -28,7 +40,7 @@ buildPythonApplication rec {
|
||||
meta = with lib; {
|
||||
description = "Manage AWS MFA Security Credentials";
|
||||
homepage = "https://github.com/broamski/aws-mfa";
|
||||
license = [ licenses.mit ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.srapenne ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user