about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-qthelp
diff options
context:
space:
mode:
authorMarkus S. Wamser <github-dev@mail2013.wamser.eu>2019-10-22 00:38:15 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 15:29:10 +0100
commita3746ffc8d1bb52164ab602745ce87aafd00de13 (patch)
tree03a06493a9b9a31ce9fcea5ba384ef175a15924b /pkgs/development/python-modules/sphinxcontrib-qthelp
parent56a517e47cf726323f5490154a5999143c52795f (diff)
sphinxcontrib-qthelp: init at 1.0.2
build dep of sphinx 2.2.0
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-qthelp')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix
new file mode 100644
index 0000000000000..92471c6c3d0f4
--- /dev/null
+++ b/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix
@@ -0,0 +1,25 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "sphinxcontrib-qthelp";
+  version = "1.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "79465ce11ae5694ff165becda529a600c754f4bc459778778c7017374d4d406f";
+  };
+
+
+  # Check is disabled due to circular dependency of sphinx
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.";
+    homepage = http://sphinx-doc.org/;
+    license = licenses.bsd0;
+  };
+
+}