aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
blob: e0b36de5672951684b77e24c9efa02bfa6019454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildPythonPackage, sphinx, fetchPypi }:


buildPythonPackage rec {
  name = "${pname}-${version}";
  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;
  };
}