fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, pythonPackages }:
2
3pythonPackages.buildPythonApplication rec {
4 name = "awslogs-${version}";
5 version = "0.7";
6
7 src = fetchFromGitHub {
8 owner = "jorgebastida";
9 repo = "awslogs";
10 rev = "${version}";
11 sha256 = "0dqf26h595l1fcnagxi8zsdarsxg3smsihxaqrvnki8fshhfdqsm";
12 };
13
14 doCheck = false;
15
16 propagatedBuildInputs = with pythonPackages; [
17 boto3 termcolor dateutil docutils
18 ];
19
20 meta = with stdenv.lib; {
21 homepage = https://github.com/jorgebastida/awslogs;
22 description = "AWS CloudWatch logs for Humans";
23 maintainers = with maintainers; [ dbrock ];
24 license = licenses.bsd3;
25 };
26}