python312Packages.materialx: 1.39.1 -> 1.38.10 (#380449)

This commit is contained in:
Fabián Heredia Montiel
2025-02-08 22:22:48 -06:00
committed by GitHub
@@ -16,13 +16,13 @@
buildPythonPackage rec {
pname = "materialx";
version = "1.39.1";
version = "1.38.10";
src = fetchFromGitHub {
owner = "AcademySoftwareFoundation";
repo = "MaterialX";
tag = "v${version}";
hash = "sha256-WzzsY1hOWwJEqT/ZRLIoZDfKNvx1Yf6aFhA3ZcSPx+s=";
rev = "v${version}";
hash = "sha256-/kMHmW2dptZNtjuhE5s+jvPRIdtY+FRiVtMU+tiBgQo=";
};
format = "other";
@@ -64,8 +64,14 @@ buildPythonPackage rec {
ln -s $out/python $target_dir
'';
# Update to 1.39 has major API changes and downstream software
# needs to adapt, first. So, do not include in mass updates. For reference, see
# https://github.com/NixOS/nixpkgs/pull/326466#issuecomment-2293029160
# and https://github.com/NixOS/nixpkgs/issues/380230
passthru.skipBulkUpdate = true;
meta = {
changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/${src.rev}/CHANGELOG.md";
description = "Open standard for representing rich material and look-development content in computer graphics";
homepage = "https://materialx.org";
maintainers = [ lib.maintainers.gador ];