pythonPackages.le: refactor move to python-modules
This commit is contained in:
parent
e5ca5a81a7
commit
a6e6018694
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -5678,26 +5678,7 @@ in {
|
||||||
|
|
||||||
ldaptor = callPackage ../development/python-modules/ldaptor { };
|
ldaptor = callPackage ../development/python-modules/ldaptor { };
|
||||||
|
|
||||||
le = buildPythonPackage rec {
|
le = callPackage ../development/python-modules/le { };
|
||||||
name = "le-${version}";
|
|
||||||
version = "1.4.29";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/logentries/le/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "d29738937cb6e714b6ec2ae74b66b1983482ffd54b4faa40767af18509521d4c";
|
|
||||||
};
|
|
||||||
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ simplejson psutil ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/logentries/le";
|
|
||||||
description = "Logentries agent";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
lektor = buildPythonPackage rec {
|
lektor = buildPythonPackage rec {
|
||||||
name = "lektor-${version}";
|
name = "lektor-${version}";
|
||||||
|
|
Loading…
Reference in New Issue