Created
December 8, 2016 05:13
-
-
Save 4z3/bf24d362d7399dd98af027f798d23abd to your computer and use it in GitHub Desktop.
awslogs.nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# installation: nix-env -i $(nix-build --no-out-link -E '(import <nixpkgs> {}).callPackage ./awslogs.nix {}') | |
{ buildPythonPackage, fetchFromGitHub, pythonPackages }: | |
buildPythonPackage rec { | |
name = "awslogs-${src.rev}"; | |
src = fetchFromGitHub { | |
owner = "jorgebastida"; | |
repo = "awslogs"; | |
rev = "0.7"; | |
sha256 = "0dqf26h595l1fcnagxi8zsdarsxg3smsihxaqrvnki8fshhfdqsm"; | |
}; | |
doCheck = false; | |
propagatedBuildInputs = [ | |
pythonPackages.boto3 | |
pythonPackages.docutils | |
pythonPackages.termcolor | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment