pythonPackages.python-logstash: init at 0.4.6

This commit is contained in:
Peter Romfeld 2019-01-31 11:55:32 +08:00
parent dfc8ec8da7
commit fedc7d09cd
No known key found for this signature in database
GPG Key ID: D10E6F3F15306D73
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "python-logstash";
version = "0.4.6";
src = fetchPypi {
inherit pname version;
sha256 = "13763yx0k655y0c8gxv7jj6cqp45zypx2fmnc56jnn9zz1fkx50h";
};
# 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;
};
}

View File

@ -4571,6 +4571,8 @@ in {
python-libarchive = callPackage ../development/python-modules/python-libarchive { };
python-logstash = callPackage ../development/python-modules/python-logstash { };
libarchive-c = callPackage ../development/python-modules/libarchive-c {
inherit (pkgs) libarchive;
};