2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
2024-06-20 14:57:18 +00:00
|
|
|
pythonOlder,
|
2024-06-05 15:53:02 +00:00
|
|
|
sphinx,
|
|
|
|
}:
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piccolo-theme";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "0.23.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-09-09 14:08:57 +00:00
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-09-09 14:08:57 +00:00
|
|
|
pname = "piccolo_theme";
|
|
|
|
inherit version;
|
2024-06-20 14:57:18 +00:00
|
|
|
hash = "sha256-jlnKZK2wuEM+n+3Y59U6+LyQJRBUwQAn0NarAGlNdx0=";
|
2022-09-09 14:08:57 +00:00
|
|
|
};
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
dependencies = [ sphinx ];
|
|
|
|
|
|
|
|
# Module has no tests
|
|
|
|
doCheck = false;
|
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-20 14:57:18 +00:00
|
|
|
changelog = "https://github.com/piccolo-orm/piccolo_theme/releases/tag/${version}";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|