Skip to content

Commit

Permalink
python310Packages.docstring-to-markdown: add changelog to meta
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Dec 6, 2022
1 parent 3b94b2c commit 94b7282
Showing 1 changed file with 6 additions and 1 deletion.
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.11";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "python-lsp";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-4Jl1XJpxwbxGWxdF4bOerjHyzHCIHtrydklwwk1WGs4=";
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 94b7282

Please sign in to comment.