summary refs log tree commit diff
path: root/pkgs/tools/admin/awslogs/default.nix
blob: c4dbb39cdd8ecb41bba6d022ead2ed5fdcba5641 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "awslogs";
  version = "0.10";

  src = fetchFromGitHub {
    owner = "jorgebastida";
    repo = "awslogs";
    rev = "${version}";
    sha256 = "18s3xxdhhbz96mgj9ipgyrdcax3p9gy8gpmr0rblw8g0grj31dsp";
  };

  doCheck = false;

  propagatedBuildInputs = with python3Packages; [
    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;
  };
}