Merge pull request #204742 from r-ryantm/auto-update/python3.10-docstring-to-markdown

python310Packages.docstring-to-markdown: 0.10 -> 0.11
This commit is contained in:
Fabian Affolter 2022-12-06 18:51:43 +01:00 committed by GitHub
commit fa81d500a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,21 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "docstring-to-markdown";
version = "0.10";
version = "0.11";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "python-lsp";
repo = pname;
rev = "v${version}";
sha256 = "0rflkbms94wkcypjcnz30bc4w4iww91h7sqq3j2b6ypzl4g48csa";
rev = "refs/tags/v${version}";
hash = "sha256-4Jl1XJpxwbxGWxdF4bOerjHyzHCIHtrydklwwk1WGs4=";
};
patches = [
@ -31,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/python-lsp/docstring-to-markdown";
description = "On the fly conversion of Python docstrings to markdown";
changelog = "https://github.com/python-lsp/docstring-to-markdown/releases/tag/v${version}";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ doronbehar ];
};