summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-logstash/default.nix
blob: f4ecccf068323ae3e33127fa0f116d1672012213 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}