pypy3Packages.yapf: Disable tests

Cannot be tested, because it is using nose for tests, which is broken
for pypy.
This commit is contained in:
Martin Weinelt 2023-04-07 11:31:17 +02:00
parent 57c8befec1
commit f2fcc1fc25

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, nose
}:
@ -13,6 +14,9 @@ buildPythonPackage rec {
hash = "sha256-o/UIXTfvfj4ATEup+bPkDFT/GQHNER8FFFrjE6fGfRs=";
};
# nose is unavailable on pypy
doCheck = !isPyPy;
nativeCheckInputs = [
nose
];