Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, msgpack }: 2 3buildPythonPackage rec { 4 pname = "fluent-logger"; 5 version = "0.9.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "09vii0iclfq6vhz37xyybksq9m3538hkr7z40sz2dlpf2rkg98mg"; 10 }; 11 12 propagatedBuildInputs = [ msgpack ]; 13 14 # Tests fail because absent in package 15 doCheck = false; 16 17 meta = with lib; { 18 description = "A structured logger for Fluentd (Python)"; 19 homepage = https://github.com/fluent/fluent-logger-python; 20 license = licenses.asl20; 21 }; 22}