about summary refs log tree commit diff
path: root/pkgs/development/python-modules/le/default.nix
blob: 134a143a3b0f82ad7e263fb24585df771c6eb53c (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
31
32
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, simplejson
, psutil
}:

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

  src = fetchFromGitHub {
    owner = "logentries";
    repo = "le";
    rev = "v${version}";
    sha256 = "sha256-67JPnof0olReu90rM78e1px8NvbGcj8pphFhPaiSVmA=";
  };

  disabled = isPy3k;

  doCheck = false;

  propagatedBuildInputs = [ simplejson psutil ];

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

}