guzzle_sphinx_theme: init at 0.7.11

* maintainers: add flokli

* sphinx_guzzle_theme: init at 0.7.11

This adds sphinx_guzzle_theme, which is used for sphinx documentation in
various projects, including BorgBackup.
This commit is contained in:
Florian Klink 2017-10-12 08:14:37 +02:00 committed by Jörg Thalheim
parent 42541c4387
commit ab2cc75f78
3 changed files with 28 additions and 0 deletions

View file

@ -206,6 +206,7 @@
falsifian = "James Cook <james.cook@utoronto.ca>";
fare = "Francois-Rene Rideau <fahree@gmail.com>";
fgaz = "Francesco Gazzetta <francygazz@gmail.com>";
flokli = "Florian Klink <flokli@flokli.de>";
florianjacob = "Florian Jacob <projects+nixos@florianjacob.de>";
flosse = "Markus Kohlhase <mail@markus-kohlhase.de>";
fluffynukeit = "Daniel Austin <dan@fluffynukeit.com>";

View file

@ -0,0 +1,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;
};
}

View file

@ -20554,6 +20554,8 @@ in {
};
});
guzzle_sphinx_theme = callPackage ../development/python-modules/guzzle_sphinx_theme { };
sphinx-testing = callPackage ../development/python-modules/sphinx-testing { };
sphinxcontrib-blockdiag = buildPythonPackage (rec {