python.pkgs.kiwisolver: fix build

This commit is contained in:
Frederik Rietdijk
2020-06-07 11:15:34 +02:00
parent 936b2b8782
commit 9a49beb08d
3 changed files with 37 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
, fetchPypi
, stdenv
, libcxx
, cppy
}:
buildPythonPackage rec {
@@ -16,6 +17,10 @@ buildPythonPackage rec {
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
nativeBuildInputs = [
cppy
];
# Does not include tests
doCheck = false;