2022-11-08T02:55:28 griffe 0.21.0 -> 0.23.0 https://pypi.org/project/griffe/ 2022-11-08T02:55:30 attrpath: griffe 2022-11-08T02:55:31 Checking auto update branch... 2022-11-08T02:55:31 No auto update branch exists 2022-11-08T02:55:32 Old version 0.21.0" not present in master derivation file with contents: { lib , aiofiles , buildPythonPackage , cached-property , fetchFromGitHub , git , pdm-pep517 , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "griffe"; version = "0.23.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mkdocstrings"; repo = pname; rev = version; hash = "sha256-eoWOkAwAd3ab9+uUfAdrYhkheibfGYkuoNQX/3nS57w="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace 'dynamic = ["version"]' 'version = "${version}"' \ --replace 'license = "ISC"' 'license = {file = "LICENSE"}' \ --replace 'version = {source = "scm"}' 'license-expression = "ISC"' ''; nativeBuildInputs = [ pdm-pep517 ]; propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ cached-property ]; checkInputs = [ git pytestCheckHook ]; passthru.optional-dependencies = { async = [ aiofiles ]; }; pythonImportsCheck = [ "griffe" ]; meta = with lib; { description = "Signatures for entire Python programs"; homepage = "https://github.com/mkdocstrings/griffe"; license = licenses.isc; maintainers = with maintainers; [ fab ]; }; }