2022-09-09 14:08:57 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, sphinx }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piccolo-theme";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "0.15.0";
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "piccolo_theme";
|
|
|
|
inherit version;
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-8VxkrzADp3yCeb02BxtT6oSP1FCX8GW4oc6OECK2hJw=";
|
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";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ loicreynier ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|