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