pythonPackages.scikit-build: fix build by disabling test_source_distribution test
This commit is contained in:
parent
102cc2c709
commit
dbc5bcdb5c
@ -17,13 +17,14 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ wheel setuptools packaging ];
|
propagatedBuildInputs = [ wheel setuptools packaging ];
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
cmake ninja cython codecov coverage six virtualenv pathpy
|
cmake ninja cython codecov coverage six pathpy
|
||||||
pytest pytestcov pytest-mock pytest-virtualenv pytestrunner
|
pytest pytestcov pytest-mock pytest-virtualenv pytestrunner
|
||||||
requests flake8
|
requests flake8
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
|
disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
|
||||||
"test_hello_develop" # tries setuptools develop install
|
"test_hello_develop" # tries setuptools develop install
|
||||||
|
"test_source_distribution" # pip has no way to install missing dependencies
|
||||||
"test_wheel" # pip has no way to install missing dependencies
|
"test_wheel" # pip has no way to install missing dependencies
|
||||||
"test_fortran_compiler" # passes if gfortran is available
|
"test_fortran_compiler" # passes if gfortran is available
|
||||||
"test_install_command" # tries to alter out path
|
"test_install_command" # tries to alter out path
|
||||||
|
Loading…
x
Reference in New Issue
Block a user