python3Packages.yourdfpy: 0.0.59 -> 0.0.60 (#483242)

This commit is contained in:
Fabian Affolter
2026-01-24 16:10:05 +00:00
committed by GitHub
@@ -19,16 +19,16 @@
pytest-cov-stub,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "yourdfpy";
version = "0.0.59";
version = "0.0.60";
pyproject = true;
src = fetchFromGitHub {
owner = "clemense";
repo = "yourdfpy";
tag = "v${version}";
hash = "sha256-9GSDD/RjLGlmuncyH97TqKZrPU8WpmbSKGT7sDKy9FA=";
tag = "v${finalAttrs.version}";
hash = "sha256-tXFrwtxjLvHNxT/MhrAiV2CGcbKj1JRi/Yo8Qt6UBfk=";
};
build-system = [
@@ -55,9 +55,9 @@ buildPythonPackage rec {
meta = {
description = "Python parser for URDFs";
homepage = "https://github.com/clemense/yourdfpy/";
changelog = "https://github.com/clemense/yourdfpy/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/clemense/yourdfpy/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nim65s ];
mainProgram = "yourdfpy";
};
}
})