Skip to content

Commit

Permalink
python3Packages.scikit-build: fix build
Browse files Browse the repository at this point in the history
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

(cherry picked from commit f8c6b82)
  • Loading branch information
Ma27 committed Oct 1, 2019
1 parent 8d7f2c7 commit c0fcb53
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/scikit-build/default.nix
Expand Up @@ -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
Expand Down

0 comments on commit c0fcb53

Please sign in to comment.