fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
26 lines
532 B
Nix
26 lines
532 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-logstash";
|
|
version = "0.4.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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;
|
|
};
|
|
}
|