depot/third_party/nixpkgs/pkgs/development/python-modules/piccolo-theme/default.nix

34 lines
663 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
sphinx,
}:
buildPythonPackage rec {
pname = "piccolo-theme";
version = "0.22.0";
format = "setuptools";
src = fetchPypi {
pname = "piccolo_theme";
inherit version;
hash = "sha256-TAbaUnPfAH17BYJqbkSYgNzwmpJkIXGCx1UkJmDML4g=";
};
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "piccolo_theme" ];
meta = with lib; {
description = "Clean and modern Sphinx theme";
homepage = "https://piccolo-theme.readthedocs.io";
license = with licenses; [
mit
asl20
];
maintainers = with maintainers; [ loicreynier ];
platforms = platforms.unix;
};
}