Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / piccolo-theme / default.nix
blobb6406ca42269c5bd837530813a2f7314111ad881
1 { lib, buildPythonPackage, fetchPypi, sphinx }:
3 buildPythonPackage rec {
4   pname = "piccolo-theme";
5   version = "0.21.0";
6   format = "setuptools";
8   src = fetchPypi {
9     pname = "piccolo_theme";
10     inherit version;
11     hash = "sha256-mQqZ6Rwx0VoDBVQ0zbvCOmAMKAMv67Xd1ksYW6w2QPM=";
12   };
14   propagatedBuildInputs = [
15     sphinx
16   ];
18   pythonImportsCheck = [ "piccolo_theme" ];
20   meta = with lib; {
21     description = "Clean and modern Sphinx theme";
22     homepage = "https://piccolo-theme.readthedocs.io";
23     license = with licenses; [ mit asl20 ];
24     maintainers = with maintainers; [ loicreynier ];
25     platforms = platforms.unix;
26   };