3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #202557 from fabaff/griffe-bump

python310Packages.griffe: 0.24.0 -> 0.24.1
This commit is contained in:
Fabian Affolter 2022-11-23 19:02:27 +01:00 committed by GitHub
commit d46f639daf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "griffe";
version = "0.24.0";
version = "0.24.1";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -20,8 +20,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = pname;
rev = version;
hash = "sha256-Gcht9pmh15dvSHRsG9y82l4HoJ7l/gxbmrRh7Jow2Bs=";
rev = "refs/tags/${version}";
hash = "sha256-HOjwm/IktllmD7Gg9bu8NZqe2RazFC5MNMgH3cld6/8=";
};
postPatch = ''
@ -59,6 +59,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Signatures for entire Python programs";
homepage = "https://github.com/mkdocstrings/griffe";
changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
};