Gaetan Lepage
2026-03-08 18:04:57 +00:00
parent d2ed0d3745
commit df325c5e26
@@ -7,10 +7,12 @@
setuptools-scm,
# dependencies
lxml,
unicode-segmentation-rs,
urllib3,
# optional-dependencies
tomlkit,
lxml,
# tests
aeidon,
@@ -28,25 +30,24 @@
vobject,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "translate-toolkit";
version = "3.18.1";
version = "3.19.3";
pyproject = true;
src = fetchFromGitHub {
owner = "translate";
repo = "translate";
tag = version;
hash = "sha256-T7Zo2/jx9P+Tz8jwRKRCV1lVv7XIaIoQTIjIVdEj/ZQ=";
tag = finalAttrs.version;
hash = "sha256-k+gCrY2r1ILeSvjdEHT3wE2LF9Qn76ENe9RRVcaHmq4=";
};
build-system = [ setuptools-scm ];
dependencies = [
lxml
unicode-segmentation-rs
urllib3
lxml
];
optional-dependencies = {
@@ -85,8 +86,8 @@ buildPythonPackage rec {
meta = {
description = "Useful localization tools for building localization & translation systems";
homepage = "https://toolkit.translatehouse.org/";
changelog = "https://docs.translatehouse.org/projects/translate-toolkit/en/latest/releases/${src.tag}.html";
changelog = "https://docs.translatehouse.org/projects/translate-toolkit/en/latest/releases/${finalAttrs.src.tag}.html";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ erictapen ];
};
}
})