python3Packages.fyta-cli: 0.7.2 -> 0.7.3 (#520254)

This commit is contained in:
Fabian Affolter
2026-05-15 15:41:49 +00:00
committed by GitHub
@@ -11,16 +11,16 @@
syrupy,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "fyta-cli";
version = "0.7.2";
version = "0.7.3";
pyproject = true;
src = fetchFromGitHub {
owner = "dontinelli";
repo = "fyta_cli";
tag = "v${version}";
hash = "sha256-YYH15ZuRZirSFC7No1goY/afk2BGtCCykcZAnCDdq7U=";
tag = "v${finalAttrs.version}";
hash = "sha256-+gPPECRMhhx7H+K3//PRH3ALyY2k6eQ/o9qAVHyyoes=";
};
build-system = [ hatchling ];
@@ -46,8 +46,8 @@ buildPythonPackage rec {
meta = {
description = "Module to access the FYTA API";
homepage = "https://github.com/dontinelli/fyta_cli";
changelog = "https://github.com/dontinelli/fyta_cli/releases/tag/v${version}";
changelog = "https://github.com/dontinelli/fyta_cli/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}
})