mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.cython: disable tests
Fixed invocation of test suite. Disabled tests due to compiler errors and testing taking a very long time.
This commit is contained in:
parent
8e8f1b14d0
commit
7c2af9fe4f
1 changed files with 7 additions and 1 deletions
|
@ -3282,7 +3282,13 @@ in modules // {
|
|||
sha256 = "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pkgs.pkgconfig ];
|
||||
buildInputs = with self; [ pkgs.pkgconfig pkgs.gdb ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} runtests.py
|
||||
'';
|
||||
|
||||
doCheck = false; # Lots of weird compiler errors
|
||||
|
||||
meta = {
|
||||
description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";
|
||||
|
|
Loading…
Reference in a new issue