5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
48 lines
986 B
Nix
48 lines
986 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchPypi,
|
|
sphinx,
|
|
accessible-pygments,
|
|
beautifulsoup4,
|
|
docutils,
|
|
packaging,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydata-sphinx-theme";
|
|
version = "0.15.4";
|
|
|
|
format = "wheel";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit version format;
|
|
dist = "py3";
|
|
python = "py3";
|
|
pname = "pydata_sphinx_theme";
|
|
hash = "sha256-ITatDpUA0JSflhZ+Y/PimGIAQK6o+cdGIZWe2l1M+OY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
sphinx
|
|
accessible-pygments
|
|
beautifulsoup4
|
|
docutils
|
|
packaging
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [ "pydata_sphinx_theme" ];
|
|
|
|
meta = with lib; {
|
|
description = "Bootstrap-based Sphinx theme from the PyData community";
|
|
homepage = "https://github.com/pydata/pydata-sphinx-theme";
|
|
changelog = "https://github.com/pydata/pydata-sphinx-theme/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|