biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / weblate-schemas / default.nix
blob1fff774c171592d272cc8688225f77997366a4f3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   fqdn,
7   jsonschema,
8   rfc3987,
9   strict-rfc3339,
10   pytestCheckHook,
13 buildPythonPackage rec {
14   pname = "weblate-schemas";
15   version = "2024.1";
17   pyproject = true;
19   src = fetchPypi {
20     pname = "weblate_schemas";
21     inherit version;
22     hash = "sha256-nYPLD3VDO1Z97HI79J6Yjj3bWp1xKB79FWPCW146iz4=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [
28     fqdn
29     jsonschema
30     rfc3987
31     strict-rfc3339
32   ];
34   nativeCheckInputs = [ pytestCheckHook ];
36   pythonImportsCheck = [ "weblate_schemas" ];
38   meta = with lib; {
39     description = "Schemas used by Weblate";
40     homepage = "https://github.com/WeblateOrg/weblate_schemas";
41     changelog = "https://github.com/WeblateOrg/weblate_schemas/blob/${version}/CHANGES.rst";
42     license = licenses.mit;
43     maintainers = with maintainers; [ erictapen ];
44   };