python3Packages.manifold3d: 3.1.1 -> 3.2.0

Changelog: https://github.com/elalish/manifold/releases/tag/v3.2.0
This commit is contained in:
Peder Bergebakken Sundt
2025-07-16 00:12:15 +02:00
parent fecfe143d7
commit 23c25da6bd
3 changed files with 9 additions and 3 deletions
+4
View File
@@ -41,6 +41,10 @@ stdenv.mkDerivation (finalAttrs: {
test/manifold_test --gtest_filter=-CrossSection.RoundOffset
'';
passthru = {
tbb = tbb_2021;
};
meta = {
description = "Geometry library for topological robustness";
homepage = "https://github.com/elalish/manifold";
@@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "manifold3d";
version = "3.1.1";
version = "3.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "elalish";
repo = "manifold";
tag = "v${version}";
hash = "sha256-dCCTjWRjXSyuEDxGI9ZS2UTmLdZVSmDOmHFnhox3N+4=";
hash = "sha256-tcEjgOU90tYnlZDedHJvnqWFDDtXGx64G80wnWz4lBI=";
};
dontUseCmakeConfigure = true;
+3 -1
View File
@@ -8776,7 +8776,9 @@ self: super: with self; {
callPackage ../development/python-modules/marionette-harness/manifestparser.nix
{ };
manifold3d = callPackage ../development/python-modules/manifold3d { };
manifold3d = callPackage ../development/python-modules/manifold3d {
inherit (pkgs.manifold.passthru) tbb;
};
manim = callPackage ../development/python-modules/manim { };