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

main
Sandro Jäckel 2 years ago committed by Martin Weinelt
parent f0719291bc
commit 352ae0b79e
  1. 10
      pkgs/development/python-modules/yanc/default.nix

@ -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 .
'';

Loading…
Cancel
Save