657f08b14c
GitOrigin-RevId: 807e9154dcb16384b1b765ebe9cd2bba2ac287fd
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.16.0";
|
|
|
|
format = "wheel";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit version format;
|
|
dist = "py3";
|
|
python = "py3";
|
|
pname = "pydata_sphinx_theme";
|
|
hash = "sha256-GMgQ7k5n4FKB43HhVsH7W7D6HydHJARhsiUnL32NV9g=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|