Files
nixpkgs/pkgs/development/python-modules/materialx/default.nix
2025-04-25 15:33:23 +08:00

85 lines
2.1 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
cmake,
setuptools,
libX11,
libXt,
libGL,
openimageio_2,
imath,
python,
apple-sdk_14,
}:
buildPythonPackage rec {
pname = "materialx";
version = "1.38.10";
# nixpkgs-update: no auto update
# Updates are disabled due to API breakage in 1.39+ that breaks almost all
# consumers.
src = fetchFromGitHub {
owner = "AcademySoftwareFoundation";
repo = "MaterialX";
rev = "v${version}";
hash = "sha256-/kMHmW2dptZNtjuhE5s+jvPRIdtY+FRiVtMU+tiBgQo=";
};
format = "other";
nativeBuildInputs = [
cmake
setuptools
];
buildInputs =
[
openimageio_2
imath
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
apple-sdk_14
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
libX11
libXt
libGL
];
cmakeFlags = [
(lib.cmakeBool "MATERIALX_BUILD_OIIO" true)
(lib.cmakeBool "MATERIALX_BUILD_PYTHON" true)
(lib.cmakeBool "MATERIALX_BUILD_GEN_MSL" (
stdenv.hostPlatform.isLinux || stdenv.hostPlatform.isDarwin
))
];
pythonImportsCheck = [ "MaterialX" ];
postInstall = ''
# Make python lib properly accessible
target_dir=$out/${python.sitePackages}
mkdir -p $(dirname $target_dir)
# required for cmake to find the bindings, when included in other projects
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.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 ];
platforms = lib.platforms.unix;
license = lib.licenses.mpl20;
};
}