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:
parent
a5bd569344
commit
f8c6b826d4
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue