python310Packages.flow-record: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-02-11 10:54:54 +01:00
committed by Florian Brandes
parent dfab32c3c1
commit 58e1b0004f

View File

@@ -22,7 +22,7 @@ buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fox-it"; owner = "fox-it";
repo = "flow.record"; repo = "flow.record";
rev = version; rev = "refs/tags/${version}";
hash = "sha256-bXI7q+unlrXvagKisAO4INfzeXlC4g918xmPmwMDCK8="; hash = "sha256-bXI7q+unlrXvagKisAO4INfzeXlC4g918xmPmwMDCK8=";
}; };
@@ -69,6 +69,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Library for defining and creating structured data"; description = "Library for defining and creating structured data";
homepage = "https://github.com/fox-it/flow.record"; homepage = "https://github.com/fox-it/flow.record";
changelog = "https://github.com/fox-it/flow.record/releases/tag/${version}";
license = licenses.agpl3Only; license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };