parent
cac53b75a8
commit
d2fc461f6b
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/admin/awslogs/default.nix
Normal file
26
pkgs/tools/admin/awslogs/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "awslogs-${version}";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jorgebastida";
|
||||
repo = "awslogs";
|
||||
rev = "${version}";
|
||||
sha256 = "0dqf26h595l1fcnagxi8zsdarsxg3smsihxaqrvnki8fshhfdqsm";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
boto3 termcolor dateutil docutils
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/jorgebastida/awslogs;
|
||||
description = "AWS CloudWatch logs for Humans";
|
||||
maintainers = with maintainers; [ dbrock ];
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -475,6 +475,8 @@ in
|
|||
|
||||
awscli = pythonPackages.awscli; # Should be moved out of python-packages.nix
|
||||
|
||||
awslogs = callPackage ../tools/admin/awslogs { };
|
||||
|
||||
aws_shell = python2Packages.aws_shell; # Should be moved out of python-packages.nix
|
||||
|
||||
azure-cli = nodePackages.azure-cli;
|
||||
|
|
Loading…
Reference in a new issue