blob: 776fcd4d96609742d380d951fe354c5fcffd52f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
transifex-cli,
babel,
click,
setuptools,
setuptools-scm,
sphinx,
pytestCheckHook,
mock,
}:
buildPythonPackage rec {
pname = "sphinx-intl";
version = "2.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "sphinx-doc";
repo = "sphinx-intl";
tag = version;
hash = "sha256-5Ro+UG9pwwp656fYyCsna6P4s9Gb86Tu3Qm2WUI7tsE=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
babel
click
setuptools
sphinx
];
nativeCheckInputs = [
pytestCheckHook
mock
transifex-cli
];
pythonImportsCheck = [ "sphinx_intl" ];
meta = {
description = "Sphinx utility that make it easy to translate and to apply translation";
homepage = "https://github.com/sphinx-doc/sphinx-intl";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ thornycrackers ];
};
}
|