f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
36 lines
737 B
Nix
36 lines
737 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
sphinx,
|
|
packaging,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pallets-sphinx-themes";
|
|
version = "2.1.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pallets";
|
|
repo = "pallets-sphinx-themes";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-uXSejJLVmYpzRCP92JQKHosnlx7dgZlFf5XzbxOfvII=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
packaging
|
|
sphinx
|
|
];
|
|
|
|
pythonImportsCheck = [ "pallets_sphinx_themes" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pallets/pallets-sphinx-themes";
|
|
description = "Sphinx theme for Pallets projects";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ kaction ];
|
|
};
|
|
}
|