Gaetan Lepage
2025-04-18 22:54:39 +02:00
parent 4a4d113ca8
commit ded0f802e1
+8 -6
View File
@@ -27,7 +27,7 @@ let
in
python.pkgs.buildPythonApplication rec {
pname = "weblate";
version = "5.10.4";
version = "5.11";
pyproject = true;
@@ -40,7 +40,7 @@ python.pkgs.buildPythonApplication rec {
owner = "WeblateOrg";
repo = "weblate";
tag = "weblate-${version}";
hash = "sha256-ReODTMaKMkvbaR8JETSeOrXxQIsL1Vy1pjKYWo5mw+A=";
hash = "sha256-A1XnXr97DhAZpDlttsMTBjOgdSO/bEN5jfOgZrzcxQo=";
};
patches = [
@@ -89,6 +89,7 @@ python.pkgs.buildPythonApplication rec {
cyrtranslit
dateparser
diff-match-patch
disposable-email-domains
django-appconf
django-celery-beat
django-compressor
@@ -176,14 +177,15 @@ python.pkgs.buildPythonApplication rec {
};
};
meta = with lib; {
meta = {
description = "Web based translation tool with tight version control integration";
homepage = "https://weblate.org/";
license = with licenses; [
changelog = "https://github.com/WeblateOrg/weblate/releases/tag/weblate-${version}";
license = with lib.licenses; [
gpl3Plus
mit
];
platforms = platforms.linux;
maintainers = with maintainers; [ erictapen ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ erictapen ];
};
}