pythonPackages.fluent-logger: init at 0.9.3 (#44236)

This commit is contained in:
Ihor Antonov 2018-07-30 16:46:03 -04:00 committed by Robert Schütz
parent d7c3926352
commit 742627f271
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, msgpack }:
buildPythonPackage rec {
pname = "fluent-logger";
version = "0.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "09vii0iclfq6vhz37xyybksq9m3538hkr7z40sz2dlpf2rkg98mg";
};
propagatedBuildInputs = [ msgpack ];
# Tests fail because absent in package
doCheck = false;
meta = with lib; {
description = "A structured logger for Fluentd (Python)";
homepage = https://github.com/fluent/fluent-logger-python;
license = licenses.asl20;
};
}

View file

@ -2546,6 +2546,8 @@ in {
};
};
fluent-logger = callPackage ../development/python-modules/fluent-logger {};
python-forecastio = callPackage ../development/python-modules/python-forecastio { };
fpdf = callPackage ../development/python-modules/fpdf { };