python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / sphinx-intl / default.nix
blobe8589c0d1e6db2e0b6d874307c63585015d69c47
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   transifex-cli,
6   babel,
7   click,
8   setuptools,
9   sphinx,
10   pytestCheckHook,
11   mock,
14 buildPythonPackage rec {
15   pname = "sphinx-intl";
16   version = "2.3.0";
17   pyproject = true;
19   src = fetchFromGitHub {
20     owner = "sphinx-doc";
21     repo = "sphinx-intl";
22     rev = "refs/tags/${version}";
23     hash = "sha256-j14iZdFBSOHqopJcMYMcQdf3zggRUCzTwcquImhhVpE=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     babel
30     click
31     setuptools
32     sphinx
33   ];
35   nativeCheckInputs = [
36     pytestCheckHook
37     mock
38     transifex-cli
39   ];
41   pythonImportsCheck = [ "sphinx_intl" ];
43   meta = with lib; {
44     description = "Sphinx utility that make it easy to translate and to apply translation";
45     homepage = "https://github.com/sphinx-doc/sphinx-intl";
46     license = licenses.bsd2;
47     maintainers = with maintainers; [ thornycrackers ];
48   };