c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
46 lines
978 B
Nix
46 lines
978 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, sphinx
|
|
, pydata-sphinx-theme
|
|
, jupyter-book
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinx-book-theme";
|
|
version = "1.1.2";
|
|
|
|
format = "wheel";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit version format;
|
|
dist = "py3";
|
|
python = "py3";
|
|
pname = "sphinx_book_theme";
|
|
hash = "sha256-zudERm/eSPUDArhRKRsgiqZ+cmyjG3o7+5tuahRWY+A=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pydata-sphinx-theme
|
|
sphinx
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sphinx_book_theme"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit jupyter-book;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A clean book theme for scientific explanations and documentation with Sphinx";
|
|
homepage = "https://github.com/executablebooks/sphinx-book-theme";
|
|
changelog = "https://github.com/executablebooks/sphinx-book-theme/raw/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ marsam ];
|
|
};
|
|
}
|