lol

python312Packages.weblate-schemas: 2024.1 -> 2024.2

Changelog: https://github.com/WeblateOrg/weblate_schemas/blob/2024.2/CHANGES.rst

+7 -3
+7 -3
pkgs/development/python-modules/weblate-schemas/default.nix
··· 7 7 jsonschema, 8 8 rfc3987, 9 9 strict-rfc3339, 10 + fedora-messaging, 10 11 pytestCheckHook, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "weblate-schemas"; 15 - version = "2024.1"; 16 + version = "2024.2"; 16 17 17 18 pyproject = true; 18 19 19 20 src = fetchPypi { 20 21 pname = "weblate_schemas"; 21 22 inherit version; 22 - hash = "sha256-nYPLD3VDO1Z97HI79J6Yjj3bWp1xKB79FWPCW146iz4="; 23 + hash = "sha256-Y7hWqfv1gZ2sT2fNbWLVDzwbVdB/1rT/oND9p/mkYAs="; 23 24 }; 24 25 25 26 build-system = [ setuptools ]; ··· 31 32 strict-rfc3339 32 33 ]; 33 34 34 - nativeCheckInputs = [ pytestCheckHook ]; 35 + nativeCheckInputs = [ 36 + fedora-messaging 37 + pytestCheckHook 38 + ] ++ jsonschema.optional-dependencies.format; 35 39 36 40 pythonImportsCheck = [ "weblate_schemas" ]; 37 41