python3Packages.scikit-build: fix build

Build broke as it's attempted to run the cmake configure-phase which
won't work as this package uses cmake, but builds via a `setup.py`
rather than a `CMakeLists.txt`.

ZHF #68361
This commit is contained in:
Maximilian Bosch 2019-10-01 11:09:41 +02:00
parent a5bd569344
commit f8c6b826d4
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -22,6 +22,8 @@ buildPythonPackage rec {
requests flake8
];
dontUseCmakeConfigure = true;
disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
"test_hello_develop" # tries setuptools develop install
"test_source_distribution" # pip has no way to install missing dependencies