python310Packages.beancount-parser: add changelog to emta

This commit is contained in:
Fabian Affolter
2023-01-01 14:55:45 +01:00
committed by GitHub
parent ee8eebcbe4
commit 50281bc4c3

View File

@@ -10,15 +10,15 @@
buildPythonPackage rec {
pname = "beancount-parser";
version = "0.1.23";
format = "pyproject";
disabled = pythonOlder "3.9";
format = "pyproject";
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beancount-parser";
rev = "refs/tags/${version}";
sha256 = "sha256-3pO1HvH3R2RpNFtplWyaXxqZy0caAoAxlmfSKmjkvKQ=";
hash = "sha256-3pO1HvH3R2RpNFtplWyaXxqZy0caAoAxlmfSKmjkvKQ=";
};
buildInputs = [
@@ -40,6 +40,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Standalone Lark based Beancount syntax parser";
homepage = "https://github.com/LaunchPlatform/beancount-parser/";
changelog = "https://github.com/LaunchPlatform/beancount-parser/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ambroisie ];
};