Merge pull request #268247 from r-ryantm/auto-update/python311Packages.pygobject-stubs

python311Packages.pygobject-stubs: 2.9.0 -> 2.10.0

authored by

Fabian Affolter and committed by
GitHub
e9905c6a b3e8dae7

+8 -10
+8 -10
pkgs/development/python-modules/pygobject-stubs/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pygobject3 5 + , pythonOlder 4 6 , setuptools 5 - , black 6 - , codespell 7 - , isort 8 - , mypy 9 - , pre-commit 10 - , pygobject3 11 7 }: 12 8 13 9 buildPythonPackage rec { 14 10 pname = "pygobject-stubs"; 15 - version = "2.9.0"; 16 - format = "pyproject"; 11 + version = "2.10.0"; 12 + pyproject = true; 13 + 14 + disabled = pythonOlder "3.7"; 17 15 18 16 src = fetchFromGitHub { 19 17 owner = "pygobject"; 20 18 repo = "pygobject-stubs"; 21 19 rev = "refs/tags/v${version}"; 22 - hash = "sha256-A28vH5S5xxY7VIJORbgQ7jAi/wG4WiffNGryiumHWf0="; 20 + hash = "sha256-fz+qzFWl9JJu9CEVkeiV6XUIPDvwWgrfhTo/nj1EH5c="; 23 21 }; 24 22 25 23 nativeBuildInputs = [ ··· 32 30 meta = with lib; { 33 31 description = "PEP 561 Typing Stubs for PyGObject"; 34 32 homepage = "https://github.com/pygobject/pygobject-stubs"; 35 - changelog = "https://github.com/pygobject/pygobject-stubs/blob/${src.rev}/CHANGELOG.md"; 33 + changelog = "https://github.com/pygobject/pygobject-stubs/blob/${version}/CHANGELOG.md"; 36 34 license = licenses.lgpl21Plus; 37 35 maintainers = with maintainers; [ hacker1024 ]; 38 36 };