python.pkgs.logster: 7475c53822 -> 1.0.1

This commit is contained in:
Robin Gloster
2018-03-24 10:35:37 +01:00
parent 6a286fcba7
commit 2e6aacb056
2 changed files with 23 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchFromGitHub, pygtail }:
buildPythonPackage rec {
pname = "logster";
version = "1.0.1";
src = fetchFromGitHub {
owner = "etsy";
repo = pname;
rev = version;
sha256 = "06ac5hydas24h2cn8l5i69v1z0min5hwh6a1lcm1b08xnvpsi85q";
};
propagatedBuildInputs = [ pygtail ];
meta = with lib; {
description = "Parses log files, generates metrics for Graphite and Ganglia";
license = licenses.gpl3Plus;
homepage = https://github.com/etsy/logster;
};
}