summary refs log tree commit diff
path: root/pkgs/development/python-modules/le/default.nix
blob: 6415b255c71676f1f14e6ab3ff880c2901e3e7bb (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
{ lib, 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 lib; {
    homepage = "https://github.com/rapid7/le";
    description = "Logentries agent";
    license = licenses.mit;
  };

}