python310Packages.docstring-parser: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-04-30 23:38:12 +02:00 committed by GitHub
parent 66af8f3f06
commit 1a817360a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "rr-";
repo = "docstring_parser";
rev = "${version}";
rev = "refs/tags/${version}";
hash = "sha256-rnDitZn/xI0I9KMQv6gxzVYevWUymDgyFETjAnRlEHw=";
};
@ -35,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Parse Python docstrings in various flavors";
homepage = "https://github.com/rr-/docstring_parser";
changelog = "https://github.com/rr-/docstring_parser/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ SomeoneSerge ];
};