summary refs log tree commit diff
path: root/pkgs/development/python-modules/guzzle_sphinx_theme
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2017-10-12 08:14:37 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-10-12 07:14:37 +0100
commitab2cc75f786c0c29d20a277d2830be36be602424 (patch)
tree60b716e606aad25ef8be0ca792f066194659743e /pkgs/development/python-modules/guzzle_sphinx_theme
parent42541c438713bd3606de50b256170097351da327 (diff)
downloadnixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar.gz
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar.bz2
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar.lz
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar.xz
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.tar.zst
nixpkgs-ab2cc75f786c0c29d20a277d2830be36be602424.zip
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.
Diffstat (limited to 'pkgs/development/python-modules/guzzle_sphinx_theme')
-rw-r--r--pkgs/development/python-modules/guzzle_sphinx_theme/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix b/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
new file mode 100644
index 00000000000..e0b36de5672
--- /dev/null
+++ b/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;
+  };
+}