diff options
| author | Arnout Engelen <arnout@bzzt.net> | 2023-04-13 15:48:52 +0200 |
|---|---|---|
| committer | Arnout Engelen <arnout@bzzt.net> | 2023-04-14 14:13:52 +0200 |
| commit | 53b43eacde256ba8ea4113b898d2a9ba784fc595 (patch) | |
| tree | e10677f1c6d6953bbb9706ecae48aadb48ee5a8c /pkgs/development/python-modules/pythonocc-core | |
| parent | fe2ecaf706a5907b5e54d979fbde4924d84b65fc (diff) | |
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>
Diffstat (limited to 'pkgs/development/python-modules/pythonocc-core')
| -rw-r--r-- | pkgs/development/python-modules/pythonocc-core/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pythonocc-core/default.nix b/pkgs/development/python-modules/pythonocc-core/default.nix index f1d84712b270..5fa1b2d9b39d 100644 --- a/pkgs/development/python-modules/pythonocc-core/default.nix +++ b/pkgs/development/python-modules/pythonocc-core/default.nix @@ -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"; |
