Merge pull request #138950 from fabaff/syslog-rfc5424-formatter
python3Packages.syslog-rfc5424-formatter: init at 1.2.2
This commit is contained in:
commit
c61f9c4edd
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "syslog-rfc5424-formatter";
|
||||
version = "1.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "easypost";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "17ym5ls5r6dd9pg9frdz8myfq5fxyqlwdq1gygc9vnrxbgw2c9kb";
|
||||
};
|
||||
|
||||
# Tests are not picked up, review later again
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "syslog_rfc5424_formatter" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python logging formatter for emitting RFC5424 Syslog messages";
|
||||
homepage = "https://github.com/easypost/syslog-rfc5424-formatter";
|
||||
license = with licenses; [ isc ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -9469,6 +9469,8 @@ in {
|
||||
|
||||
synologydsm-api = callPackage ../development/python-modules/synologydsm-api { };
|
||||
|
||||
syslog-rfc5424-formatter = callPackage ../development/python-modules/syslog-rfc5424-formatter { };
|
||||
|
||||
systembridge = callPackage ../development/python-modules/systembridge { };
|
||||
|
||||
systemd = callPackage ../development/python-modules/systemd {
|
||||
|
Loading…
Reference in New Issue
Block a user