python3Packages.sphinx-autodoc-typehints: 1.19.2 -> 1.19.5

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:48 +01:00
parent 1cb93c0d8f
commit 41f040ace8

View file

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pythonOlder
, sphinx
, pytestCheckHook
@ -8,7 +10,7 @@
let
pname = "sphinx-autodoc-typehints";
version = "1.19.2";
version = "1.19.5";
in
buildPythonPackage {
@ -20,9 +22,14 @@ buildPythonPackage {
src = fetchPypi {
pname = "sphinx_autodoc_typehints";
inherit version;
hash = "sha256-hy+y17PXlIJsKONu32c56TVJSRRH3KvrB8WIVen5FN4=";
hash = "sha256-OKInN44rwVyE4pr4yx11gRgtoRBxEf0ciLGbXrcHYgU=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [
sphinx
];
@ -39,6 +46,7 @@ buildPythonPackage {
];
meta = with lib; {
changelog = "https://github.com/tox-dev/sphinx-autodoc-typehints/releases/tag/${version}";
description = "Type hints (PEP 484) support for the Sphinx autodoc extension";
homepage = "https://github.com/tox-dev/sphinx-autodoc-typehints";
license = licenses.mit;