Merge #38702: Mark packages as broken (ZHF)

This commit is contained in:
Vladimír Čunát
2018-04-17 13:36:20 +02:00
36 changed files with 50 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
{ lib, fetchFromGitHub, buildPythonPackage, pillow, six
, tesseract, cuneiform
, tesseract, cuneiform, isPy3k
}:
buildPythonPackage rec {
pname = "pyocr";
version = "0.4.7";
name = pname + "-" + version;
disabled = !isPy3k;
# Don't fetch from PYPI because it doesn't contain tests.
src = fetchFromGitHub {

View File

@@ -35,4 +35,8 @@ buildPythonPackage rec {
pyramid sqlalchemy simplejson mozsvc cornice pyramid_hawkauth pymysql
pymysqlsa umemcache WSGIProxy requests pybrowserid
];
meta = {
broken = true; # 2018-11-04
};
}

View File

@@ -33,6 +33,7 @@ buildPythonPackage rec {
homepage = http://weboob.org;
description = "Collection of applications and APIs to interact with websites without requiring the user to open a browser";
license = stdenv.lib.licenses.agpl3;
broken = true; # 2018-04-11
};
}