pythonPackages.python-logstash: init at 0.4.6
This commit is contained in:
parent
dfc8ec8da7
commit
fedc7d09cd
21
pkgs/development/python-modules/python-logstash/default.nix
Normal file
21
pkgs/development/python-modules/python-logstash/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user