Skip to content

Commit

Permalink
Merge pull request #204742 from r-ryantm/auto-update/python3.10-docst…
Browse files Browse the repository at this point in the history
…ring-to-markdown

python310Packages.docstring-to-markdown: 0.10 -> 0.11
  • Loading branch information
fabaff authored Dec 6, 2022
2 parents 69dff6a + 94b7282 commit fa81d50
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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 ];
};
Expand Down

0 comments on commit fa81d50

Please sign in to comment.