python3Packages.translate-toolkit: 3.18.1 -> 3.19.3
Diff: https://github.com/translate/translate/compare/3.18.1...3.19.3 Changelog: https://docs.translatehouse.org/projects/translate-toolkit/en/latest/releases/3.19.3.html
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user