-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
suil: build documentation using sphinxygen and sphinx-lv2-theme
- Loading branch information
Showing
3 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
pkgs/development/python-modules/sphinx-lv2-theme/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
lib, | ||
python3Packages, | ||
fetchPypi, | ||
sphinx, | ||
}: | ||
|
||
python3Packages.buildPythonPackage rec { | ||
pname = "sphinx-lv2-theme"; | ||
version = "1.4.2"; | ||
format = "setuptools"; | ||
|
||
src = fetchPypi { | ||
pname = "sphinx_lv2_theme"; | ||
inherit version; | ||
hash = "sha256-Sgma4gxCcXnAzwgfAdU2alVHeEgNicLXegM0Z+BufDg="; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
sphinx | ||
]; | ||
|
||
pythonImportsCheck = [ "sphinx_lv2_theme" ]; | ||
|
||
meta = with lib; { | ||
description = "Sphinx theme in the style of the LV2 plugin"; | ||
homepage = "https://gitlab.com/lv2/sphinx_lv2_theme"; | ||
license = licenses.bsd0; | ||
maintainers = with maintainers; [ samueltardieu ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters