python3Packages.libsavitar: remove explicit strictDeps, modernize

This commit is contained in:
Stefan Frijters
2026-09-18 15:47:22 +02:00
parent 416a5ea2a5
commit 3dc20c4e02

View File

@@ -8,7 +8,7 @@
distutils,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "libsavitar";
version = "4.12.0";
pyproject = false;
@@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libSavitar";
rev = version;
tag = finalAttrs.version;
hash = "sha256-MAA1WtGED6lvU6N4BE6wwY1aYaFrCq/gkmQFz3VWqNA=";
};
@@ -37,8 +37,6 @@ buildPythonPackage rec {
distutils
];
strictDeps = true;
meta = {
description = "C++ implementation of 3mf loading with SIP python bindings";
homepage = "https://github.com/Ultimaker/libSavitar";
@@ -46,4 +44,4 @@ buildPythonPackage rec {
platforms = lib.platforms.unix;
maintainers = [ ];
};
}
})