python3Packages.pythonocc: add rapidjson dep

This commit is contained in:
Jonathan Ringer 2022-02-07 14:03:06 -08:00
parent 775e3c8e2b
commit 40bf8d25aa
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0
2 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@
, libXi
, libXmu
, opencascade-occt
, rapidjson
, smesh
, swig
}:
@ -35,7 +36,7 @@ stdenv.mkDerivation rec {
buildInputs = [
python opencascade-occt smesh
freetype libGL libGLU libX11 libXext libXmu libXi
fontconfig
fontconfig rapidjson
] ++ lib.optionals stdenv.isDarwin [ Cocoa ];
cmakeFlags = [

View file

@ -8051,7 +8051,7 @@ in {
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };
pythonocc-core = toPythonModule (callPackage ../development/python-modules/pythonocc-core {
inherit (pkgs) fontconfig;
inherit (pkgs) fontconfig rapidjson;
inherit (pkgs.xorg) libX11 libXi libXmu libXext;
inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;
});