summary refs log tree commit diff
path: root/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
blob: 7b4498afb2c50b1df964d7e438850baa267c8f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, sphinx, fetchPypi }:

buildPythonPackage rec {
  pname = "guzzle_sphinx_theme";
  version = "0.7.11";
  src = fetchPypi {
    inherit pname version;
    sha256 = "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v";
  };

  doCheck = false; # no tests

  propagatedBuildInputs = [ sphinx ];

  meta = with stdenv.lib; {
    description = "Sphinx theme used by Guzzle: http://guzzlephp.org";
    homepage = "https://github.com/guzzle/guzzle_sphinx_theme/";
    license = licenses.mit;
    maintainers = with maintainers; [ flokli ];
    platforms = platforms.unix;
  };
}