1{
2 buildPythonPackage,
3 lib,
4 fetchFromGitLab,
5 setuptools,
6 sphinx,
7}:
8
9buildPythonPackage rec {
10 pname = "sphinx-lv2-theme";
11 version = "1.4.2";
12 pyproject = true;
13
14 src = fetchFromGitLab {
15 owner = "LV2";
16 repo = "sphinx_lv2_theme";
17 rev = "v${version}";
18 hash = "sha256-x3h2hOQIyzOmnh58WMHjuOARdML1sDiVAf7m0YghhJ4=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ sphinx ];
24
25 pythonImportsCheck = [ "sphinx_lv2_theme" ];
26
27 meta = {
28 description = "Sphinx theme in the style of the LV2 plugin";
29 homepage = "https://gitlab.com/lv2/sphinx_lv2_theme";
30 license = lib.licenses.isc;
31 maintainers = with lib.maintainers; [ samueltardieu ];
32 };
33}