1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, isPy3k
5, simplejson
6, psutil
7}:
8
9buildPythonPackage rec {
10 pname = "le";
11 version = "1.4.29";
12
13 src = fetchFromGitHub {
14 owner = "logentries";
15 repo = "le";
16 rev = "v${version}";
17 sha256 = "sha256-67JPnof0olReu90rM78e1px8NvbGcj8pphFhPaiSVmA=";
18 };
19
20 disabled = isPy3k;
21
22 doCheck = false;
23
24 propagatedBuildInputs = [ simplejson psutil ];
25
26 meta = with lib; {
27 homepage = "https://github.com/rapid7/le";
28 description = "Logentries agent";
29 license = licenses.mit;
30 };
31
32}