mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-08 20:56:52 +00:00
pypy3Packages.yapf: Disable tests
Cannot be tested, because it is using nose for tests, which is broken for pypy.
This commit is contained in:
parent
57c8befec1
commit
f2fcc1fc25
@ -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
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user