pythonPackages.le: disable tests

This commit is contained in:
Frederik Rietdijk 2016-01-24 18:29:59 +01:00
parent e72f0f2a6c
commit 64e4bdf109

View file

@ -10478,15 +10478,17 @@ in modules // {
le = buildPythonPackage rec { le = buildPythonPackage rec {
name = "le-${version}"; name = "le-${version}";
version = "1.4.13"; version = "1.4.29";
src = pkgs.fetchFromGitHub { src = pkgs.fetchurl {
owner = "logentries"; url = "https://github.com/logentries/le/archive/v${version}.tar.gz";
repo = "le"; sha256 = "d29738937cb6e714b6ec2ae74b66b1983482ffd54b4faa40767af18509521d4c";
rev = "v${version}";
sha256 = "12l6fqavykjinq286i9pgbbbrv5lq2mmiji91g0m05lfdx9pg4y1";
}; };
disabled = isPy3k;
doCheck = false;
propagatedBuildInputs = with self; [ simplejson psutil ]; propagatedBuildInputs = with self; [ simplejson psutil ];
meta = { meta = {