Merge pull request #292493 from bcdarwin/update-python3-gltflib

python311Packages.pygltflib: 1.16.1 -> 1.16.2
This commit is contained in:
Mario Rodas 2024-03-03 12:34:35 -05:00 committed by GitHub
commit 411c05a6e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ in
buildPythonPackage rec {
pname = "pygltflib";
version = "1.16.1";
version = "1.16.2";
pyproject = true;
disabled = pythonOlder "3.6";
@ -28,8 +28,8 @@ buildPythonPackage rec {
src = fetchFromGitLab {
owner = "dodgyville";
repo = "pygltflib";
rev = "da1c687f5ea88d6063616857d54d195fa0739b37"; # no tags in repo, only on PyPI
hash = "sha256-aoYVglpQ0Qaq6gEqZ455GlkL2/C1Q5YjQASVLplsWbs=";
rev = "refs/tags/v${version}";
hash = "sha256-rUAg05M5biVsdG2yEH0Olng/0jH1R/Jo5/+j4ToKkTI=";
};
nativeBuildInputs = [
@ -53,7 +53,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module for reading and writing basic glTF files";
homepage = "https://gitlab.com/dodgyville/pygltflib";
changelog = "https://gitlab.com/dodgyville/pygltflib/-/blob/${src.rev}/CHANGELOG.md";
changelog = "https://gitlab.com/dodgyville/pygltflib/-/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};