depot/third_party/nixpkgs/pkgs/development/python-modules/piccolo-theme/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
644 B
Nix

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