Unverified Commit 47bba9f9 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

weblate: 5.10.4 -> 5.11 (#398994)

parents 531526cf ded0f802
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "altcha";
  version = "0.1.7";
  version = "0.1.9";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "altcha-org";
    repo = "altcha-lib-py";
    tag = "v${version}";
    hash = "sha256-jQUzIriy7p43WfbJ2XtT/n3AQy+f2ByDl7zNBBAxZ4I=";
    hash = "sha256-54v8c/yp5zhJU151UaTxeJ1FDmbPs2TcfxomrMhFVZc=";
  };

  build-system = [ setuptools ];
+35 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "disposable-email-domains";
  version = "0.0.126";
  pyproject = true;

  # No tags on GitHub
  src = fetchPypi {
    pname = "disposable_email_domains";
    inherit version;
    hash = "sha256-fPxAOOT7yIT7DoupnUlC6iQQWBMw5iaNoH8hjjWBKMI=";
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [ "disposable_email_domains" ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    description = "Set of disposable email domains";
    homepage = "https://github.com/disposable-email-domains/disposable-email-domains";
    license = lib.licenses.cc0;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3488,6 +3488,8 @@ self: super: with self; {
  disnake = callPackage ../development/python-modules/disnake { };
  disposable-email-domains = callPackage ../development/python-modules/disposable-email-domains { };
  dissect = callPackage ../development/python-modules/dissect { };
  dissect-archive = callPackage ../development/python-modules/dissect-archive { };