1{ stdenv, buildPythonPackage, sphinx, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "guzzle_sphinx_theme";
5 version = "0.7.11";
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v";
9 };
10
11 doCheck = false; # no tests
12
13 propagatedBuildInputs = [ sphinx ];
14
15 meta = with stdenv.lib; {
16 description = "Sphinx theme used by Guzzle: http://guzzlephp.org";
17 homepage = https://github.com/guzzle/guzzle_sphinx_theme/;
18 license = licenses.mit;
19 maintainers = with maintainers; [ flokli ];
20 platforms = platforms.unix;
21 };
22}