summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinx
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-08-12 08:55:59 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-08-12 08:58:41 +0200
commit026b60e49e933d2093dab105734b38817ba8e93e (patch)
tree25638efaf40e2148c40f9697d545b10c1f1df7b3 /pkgs/development/python-modules/sphinx
parente227aac996937029e1e1eece2820b62aa76695ae (diff)
downloadnixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar.gz
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar.bz2
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar.lz
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar.xz
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.tar.zst
nixlib-026b60e49e933d2093dab105734b38817ba8e93e.zip
python.pkgs.sphinx: move expression
Diffstat (limited to 'pkgs/development/python-modules/sphinx')
-rw-r--r--pkgs/development/python-modules/sphinx/default.nix65
1 files changed, 65 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinx/default.nix b/pkgs/development/python-modules/sphinx/default.nix
new file mode 100644
index 000000000000..ae08db31b2a8
--- /dev/null
+++ b/pkgs/development/python-modules/sphinx/default.nix
@@ -0,0 +1,65 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, simplejson
+, mock
+, glibcLocales
+, html5lib
+, pythonOlder
+, enum34
+, python
+, docutils
+, jinja2
+, pygments
+, alabaster
+, Babel
+, snowballstemmer
+, six
+, sqlalchemy
+, whoosh
+, imagesize
+, requests
+}:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "Sphinx";
+  version = "1.5.2";
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "049c48393909e4704a6ed4de76fd39c8622e165414660bfb767e981e7931c722";
+  };
+  LC_ALL = "en_US.UTF-8";
+  buildInputs = [ pytest simplejson mock glibcLocales html5lib ] ++ lib.optional (pythonOlder "3.4") enum34;
+  # Disable two tests that require network access.
+  checkPhase = ''
+    cd tests; ${python.interpreter} run.py --ignore py35 -k 'not test_defaults and not test_anchors_ignored'
+  '';
+  propagatedBuildInputs = [
+    docutils
+    jinja2
+    pygments
+    alabaster
+    Babel
+    snowballstemmer
+    six
+    sqlalchemy
+    whoosh
+    imagesize
+    requests
+  ];
+
+  # https://github.com/NixOS/nixpkgs/issues/22501
+  # Do not run `python sphinx-build arguments` but `sphinx-build arguments`.
+  postPatch = ''
+    substituteInPlace sphinx/make_mode.py --replace "sys.executable, " ""
+  '';
+
+  meta = {
+    description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects";
+    homepage = http://sphinx.pocoo.org/;
+    license = lib.licenses.bsd3;
+    maintainers = with lib.maintainers; [ nand0p ];
+  };
+}
\ No newline at end of file