mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-18 14:00:23 +08:00
This reverts commitc8f346cb9d.c8f346cb9dwas part of a bulk auto-update of python packages, but broke the package as it needs to be updated in tandem with `opencascade-occt`. Adding `skipBulkUpdate` in a separate PR, #226020 .
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ lib, stdenv, python, fetchFromGitHub
|
|
, cmake
|
|
, Cocoa
|
|
, fontconfig
|
|
, freetype
|
|
, libGL
|
|
, libGLU
|
|
, libX11
|
|
, libXext
|
|
, libXi
|
|
, libXmu
|
|
, opencascade-occt
|
|
, rapidjson
|
|
, smesh
|
|
, swig4
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pythonocc-core";
|
|
version = "7.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tpaviot";
|
|
repo = "pythonocc-core";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-45pqPQ07KYlpFwJSAYVHbzuqDQTbAvPpxReal52DCzU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "/usr/X11R6/lib/libGL.dylib" "${libGL}/lib/libGL.dylib" \
|
|
--replace "/usr/X11R6/lib/libGLU.dylib" "${libGLU}/lib/libGLU.dylib"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake swig4 ];
|
|
buildInputs = [
|
|
python opencascade-occt smesh
|
|
freetype libGL libGLU libX11 libXext libXmu libXi
|
|
fontconfig rapidjson
|
|
] ++ lib.optionals stdenv.isDarwin [ Cocoa ];
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
"-DPYTHONOCC_INSTALL_DIRECTORY=${placeholder "out"}/${python.sitePackages}/OCC"
|
|
|
|
"-DSMESH_INCLUDE_PATH=${smesh}/include/smesh"
|
|
"-DSMESH_LIB_PATH=${smesh}/lib"
|
|
"-DPYTHONOCC_WRAP_SMESH=TRUE"
|
|
];
|
|
|
|
passthru = {
|
|
# `python3Packages.pythonocc-core` must be updated in tandem with
|
|
# `opencascade-occt`, and including it in the bulk updates often breaks it.
|
|
skipBulkUpdate = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for the OpenCASCADE 3D modeling kernel";
|
|
homepage = "https://github.com/tpaviot/pythonocc-core";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ gebner ];
|
|
};
|
|
}
|