python3Packages.pythonocc-core: skip bulk update

Because it'll fail anyway, since it has to be updated
in tandem with `opencascade-occt`

Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
This commit is contained in:
Arnout Engelen 2023-04-13 15:48:52 +02:00
parent fe2ecaf706
commit 53b43eacde
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA

View File

@ -48,6 +48,12 @@ stdenv.mkDerivation rec {
"-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";