Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "python-logstash"; 5 version = "0.4.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "13763yx0k655y0c8gxv7jj6cqp45zypx2fmnc56jnn9zz1fkx50h"; 10 }; 11 12 # no tests 13 doCheck = false; 14 15 meta = with lib; { 16 description = "Python logging handler for Logstash"; 17 homepage = "https://github.com/vklochan/python-logstash"; 18 maintainers = with maintainers; [ peterromfeldhk ]; 19 license = licenses.mit; 20 }; 21}