Files
nixpkgs/pkgs/development/python-modules/piccolo-theme/default.nix
T
2024-03-09 08:49:55 +00:00

28 lines
644 B
Nix

{ lib, buildPythonPackage, fetchPypi, sphinx }:
buildPythonPackage rec {
pname = "piccolo-theme";
version = "0.20.0";
format = "setuptools";
src = fetchPypi {
pname = "piccolo_theme";
inherit version;
hash = "sha256-/I6Q///oZ1OlSQEOwQ4KtUuj73ra6poyDhfhiF5nJrE=";
};
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;
};
}