Merge pull request #54975 from ghost/python-logstash

pythonPackages.python-logstash: init at 0.4.6
This commit is contained in:
Mario Rodas 2019-10-27 22:01:42 -05:00 committed by GitHub
commit 94a08f2f8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -5619,6 +5619,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;
};