Unverified Commit 411c05a6 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

python311Packages.pygltflib: 1.16.1 -> 1.16.2
parents f0fd6ed2 a99eb49f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 ];
  };