2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
sphinx,
|
|
|
|
}:
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piccolo-theme";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "0.22.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "piccolo_theme";
|
|
|
|
inherit version;
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-TAbaUnPfAH17BYJqbkSYgNzwmpJkIXGCx1UkJmDML4g=";
|
2022-09-09 14:08:57 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ sphinx ];
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "piccolo_theme" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Clean and modern Sphinx theme";
|
|
|
|
homepage = "https://piccolo-theme.readthedocs.io";
|
2024-06-05 15:53:02 +00:00
|
|
|
license = with licenses; [
|
|
|
|
mit
|
|
|
|
asl20
|
|
|
|
];
|
2022-09-09 14:08:57 +00:00
|
|
|
maintainers = with maintainers; [ loicreynier ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|