summary refs log tree commit diff
path: root/pkgs/development/python-modules/le/default.nix
blob: cb0a8bc6348104d3da0d135f782cdc90d96bc2a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchurl
, isPy3k
, simplejson
, psutil
}:

buildPythonPackage rec {
  pname = "le";
  version = "1.4.29";

  src = fetchurl {
    url = "https://github.com/logentries/le/archive/v${version}.tar.gz";
    sha256 = "d29738937cb6e714b6ec2ae74b66b1983482ffd54b4faa40767af18509521d4c";
  };

  disabled = isPy3k;

  doCheck = false;

  propagatedBuildInputs = [ simplejson psutil ];

  meta = with stdenv.lib; {
    homepage = https://github.com/rapid7/le;
    description = "Logentries agent";
    license = licenses.mit;
  };

}