summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-htmlhelp
diff options
context:
space:
mode:
authorMarkus S. Wamser <github-dev@mail2013.wamser.eu>2019-10-22 00:34:32 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 15:29:10 +0100
commit2218aba936ba76af1a2b7031880187115de48fd8 (patch)
tree9878e03afd78dae6d1e702e95974baea23a90b10 /pkgs/development/python-modules/sphinxcontrib-htmlhelp
parent00fef5d9c250c892b1390a95587f492c812bde20 (diff)
downloadnixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar.gz
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar.bz2
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar.lz
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar.xz
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.tar.zst
nixpkgs-2218aba936ba76af1a2b7031880187115de48fd8.zip
sphinxcontrib-htmlhelp: init at 1.0.2
build dep of sphinx 2.2.0
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-htmlhelp')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
new file mode 100644
index 00000000000..88b54d8e94f
--- /dev/null
+++ b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
@@ -0,0 +1,25 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "sphinxcontrib-htmlhelp";
+  version = "1.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "4670f99f8951bd78cd4ad2ab962f798f5618b17675c35c5ac3b2132a14ea8422";
+  };
+
+
+  # Check is disabled due to circular dependency of sphinx
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
+    homepage = http://sphinx-doc.org/;
+    license = licenses.bsd0;
+  };
+
+}