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