python3Packages.flynt: 1.0.1 -> 1.0.6 (#480035)

This commit is contained in:
Fabian Affolter
2026-01-16 07:15:18 +00:00
committed by GitHub
@@ -1,29 +1,28 @@
{
astor,
buildPythonPackage,
fetchFromGitHub,
hatchling,
lib,
pytestCheckHook,
pythonOlder,
tomli,
hatch-vcs,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "flynt";
version = "1.0.1";
version = "1.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "ikamensh";
repo = "flynt";
tag = version;
hash = "sha256-UHY4UDBHcP3ARikktIehSUD3Dx8A0xpOnfKWWrLCsOY=";
tag = finalAttrs.version;
hash = "sha256-SkkCA4fEHplt9HkEn+QOq4k9lW5qJeZzLZEbNEtKBSo=";
};
build-system = [ hatchling ];
propagatedBuildInputs = [ astor ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [ pytestCheckHook ];
@@ -38,9 +37,9 @@ buildPythonPackage rec {
meta = {
description = "Tool to automatically convert old string literal formatting to f-strings";
homepage = "https://github.com/ikamensh/flynt";
changelog = "https://github.com/ikamensh/flynt/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/ikamensh/flynt/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cpcloud ];
mainProgram = "flynt";
};
}
})