From 09277b1cfef2bd141bcd8e3212d2e657e8127c98 Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 30 Dec 2024 13:47:40 +0900 Subject: [PATCH] python312Packages.weblate-schemas: 2024.1 -> 2024.2 Changelog: https://github.com/WeblateOrg/weblate_schemas/blob/2024.2/CHANGES.rst --- .../python-modules/weblate-schemas/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/weblate-schemas/default.nix b/pkgs/development/python-modules/weblate-schemas/default.nix index 1fff774c1715..b08c60fe350d 100644 --- a/pkgs/development/python-modules/weblate-schemas/default.nix +++ b/pkgs/development/python-modules/weblate-schemas/default.nix @@ -7,19 +7,20 @@ jsonschema, rfc3987, strict-rfc3339, + fedora-messaging, pytestCheckHook, }: buildPythonPackage rec { pname = "weblate-schemas"; - version = "2024.1"; + version = "2024.2"; pyproject = true; src = fetchPypi { pname = "weblate_schemas"; inherit version; - hash = "sha256-nYPLD3VDO1Z97HI79J6Yjj3bWp1xKB79FWPCW146iz4="; + hash = "sha256-Y7hWqfv1gZ2sT2fNbWLVDzwbVdB/1rT/oND9p/mkYAs="; }; build-system = [ setuptools ]; @@ -31,7 +32,10 @@ buildPythonPackage rec { strict-rfc3339 ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + fedora-messaging + pytestCheckHook + ] ++ jsonschema.optional-dependencies.format; pythonImportsCheck = [ "weblate_schemas" ];