depot/third_party/nixpkgs/pkgs/development/python-modules/logster/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
515 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";
};
}