Unverified Commit 1936fe34 authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

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

parents a3f84db2 00c386eb
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -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 ];