Files
nixpkgs/pkgs/development/python-modules/piccolo-theme/default.nix
T
2024-05-22 17:32:03 +02:00

34 lines
663 B
Nix

{
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;
};
}