mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
27 lines
650 B
Nix
27 lines
650 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "awslogs-${version}";
|
|
version = "0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jorgebastida";
|
|
repo = "awslogs";
|
|
rev = "${version}";
|
|
sha256 = "18s3xxdhhbz96mgj9ipgyrdcax3p9gy8gpmr0rblw8g0grj31dsp";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|