Files
nixpkgs/pkgs/development/python-modules/pythonocc-core/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

72 lines
1.3 KiB
Nix

{
lib,
stdenv,
python,
fetchFromGitHub,
cmake,
fontconfig,
freetype,
libGL,
libGLU,
libX11,
libXext,
libXi,
libXmu,
opencascade-occt,
numpy,
rapidjson,
swig,
}:
stdenv.mkDerivation rec {
pname = "pythonocc-core";
version = "7.8.1.1";
src = fetchFromGitHub {
owner = "tpaviot";
repo = "pythonocc-core";
tag = version;
hash = "sha256-0o2PQEN0/Z7FUPZEo2HxFFa+mN2bZnYI++HVu4ONpNA=";
};
nativeBuildInputs = [
cmake
swig
];
buildInputs = [
python
opencascade-occt
freetype
libGL
libGLU
libX11
libXext
libXmu
libXi
fontconfig
numpy
rapidjson
];
cmakeFlags = [
"-Wno-dev"
"-DPYTHONOCC_INSTALL_DIRECTORY=${placeholder "out"}/${python.sitePackages}/OCC"
"-DPYTHONOCC_MESHDS_NUMPY=on"
];
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 = {
description = "Python wrapper for the OpenCASCADE 3D modeling kernel";
homepage = "https://github.com/tpaviot/pythonocc-core";
changelog = "https://github.com/tpaviot/pythonocc-core/releases/tag/${version}";
license = lib.licenses.lgpl3;
platforms = lib.platforms.unix;
maintainers = [ ];
};
}