bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
39 lines
801 B
Nix
39 lines
801 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
sphinx,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "piccolo-theme";
|
|
version = "0.23.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
pname = "piccolo_theme";
|
|
inherit version;
|
|
hash = "sha256-jlnKZK2wuEM+n+3Y59U6+LyQJRBUwQAn0NarAGlNdx0=";
|
|
};
|
|
|
|
dependencies = [ sphinx ];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "piccolo_theme" ];
|
|
|
|
meta = with lib; {
|
|
description = "Clean and modern Sphinx theme";
|
|
homepage = "https://piccolo-theme.readthedocs.io";
|
|
changelog = "https://github.com/piccolo-orm/piccolo_theme/releases/tag/${version}";
|
|
license = with licenses; [
|
|
mit
|
|
asl20
|
|
];
|
|
maintainers = with maintainers; [ loicreynier ];
|
|
};
|
|
}
|