awslogs: init at 0.7

fixes #20921
This commit is contained in:
Mikael Brockman 2016-09-07 17:06:21 +03:00 committed by Jörg Thalheim
parent cac53b75a8
commit d2fc461f6b
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View File

@ -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;