pythonPackages.qimage2ndarray: Disable tests

This commit is contained in:
Sandro Jäckel 2021-01-25 00:56:48 +01:00
parent 59d4f48851
commit 99510ec16d
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,7 +1,6 @@
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
, pyqt5
, nose
}:
buildPythonPackage rec {
@ -14,15 +13,14 @@ buildPythonPackage rec {
sha256 = "b02bd2dc7de774f954544312ec1020cf2d7e03fdd23ec9eb79901da55ccb3365";
};
checkInputs = [
nose
];
propagatedBuildInputs = [
numpy
pyqt5
];
# no tests executed
doCheck = false;
meta = {
homepage = "https://github.com/hmeine/qimage2ndarray";
description = "A small python extension for quickly converting between QImages and numpy.ndarrays (in both directions)";