1 { lib, buildPythonPackage, fetchPypi, msgpack }:
3 buildPythonPackage rec {
4 pname = "fluent-logger";
9 sha256 = "678bda90c513ff0393964b64544ce41ef25669d2089ce6c3b63d9a18554b9bfa";
13 substituteInPlace setup.py \
14 --replace "msgpack<1.0.0" "msgpack"
17 propagatedBuildInputs = [ msgpack ];
19 # Tests fail because absent in package
21 pythonImportsCheck = [
29 description = "A structured logger for Fluentd (Python)";
30 homepage = "https://github.com/fluent/fluent-logger-python";
31 license = licenses.asl20;