mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
513 B
Nix
22 lines
513 B
Nix
{ 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;
|
|
};
|
|
}
|