python39Packages.yanc: only disable tests on python >=3.5

This commit is contained in:
Sandro Jäckel 2022-04-06 00:31:22 +02:00 committed by Martin Weinelt
parent f0719291bc
commit 352ae0b79e

View File

@ -4,16 +4,16 @@ buildPythonPackage rec {
pname = "yanc";
version = "0.3.3";
# Tests fail on Python>=3.5. See: https://github.com/0compute/yanc/issues/10
disabled = !(pythonOlder "3.5");
checkInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "0z35bkk9phs40lf5061k1plhjdl5fskm0dmdikrsqi1bjihnxp8w";
};
# Tests fail on Python>=3.5. See: https://github.com/0compute/yanc/issues/10
doCheck = pythonOlder "3.5";
checkInputs = [ nose ];
checkPhase = ''
nosetests .
'';