summary refs log tree commit diff
path: root/pkgs/development/python-modules/fluent-logger/default.nix
blob: dab4ce30f6f938616a1b52f9d80b6d4c79455586 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, msgpack }:

buildPythonPackage rec {
  pname = "fluent-logger";
  version = "0.9.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "814cb51892c620a00c5a6129fffaa09eeeb0c8822c9bcb4f96232ae3cbc4d8b3";
  };

  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;
  };
}