2022-09-09 14:08:57 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, sphinx }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piccolo-theme";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "0.18.0";
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "piccolo_theme";
|
|
|
|
inherit version;
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-tEgYrQaVcWZadmhV6JRuXnk8m9oJLNSfb0hA309bX1U=";
|
2022-09-09 14:08:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
sphinx
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "piccolo_theme" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Clean and modern Sphinx theme";
|
|
|
|
homepage = "https://piccolo-theme.readthedocs.io";
|
2023-08-04 22:07:22 +00:00
|
|
|
license = with licenses; [ mit asl20 ];
|
2022-09-09 14:08:57 +00:00
|
|
|
maintainers = with maintainers; [ loicreynier ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|