mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
python39Packages.yanc: only disable tests on python >=3.5
This commit is contained in:
parent
f0719291bc
commit
352ae0b79e
@ -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…
Reference in New Issue
Block a user