22 lines
502 B
Nix
22 lines
502 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-logstash";
|
|
version = "0.4.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-0E4c4R7MEH5KTzuAf8V9loEelkpVQIGzu7RHMvdO9fk=";
|
|
};
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python logging handler for Logstash";
|
|
homepage = "https://github.com/vklochan/python-logstash";
|
|
maintainers = with maintainers; [ peterromfeldhk ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|