Skip to content

Commit

Permalink
guzzle_sphinx_theme: init at 0.7.11
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
flokli authored and Mic92 committed Oct 12, 2017
1 parent 42541c4 commit ab2cc75
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -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>";
Expand Down
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 {
Expand Down

0 comments on commit ab2cc75

Please sign in to comment.