0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

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;
};
}