python.pkgs.sphinx: fix python < 3.5 build

This commit is contained in:
Frederik Rietdijk 2017-08-27 19:56:39 +02:00
parent 42e639066b
commit dfd905b548

View File

@ -21,6 +21,7 @@
, imagesize
, requests
, sphinxcontrib-websupport
, typing
}:
buildPythonPackage rec {
@ -52,7 +53,7 @@ buildPythonPackage rec {
imagesize
requests
sphinxcontrib-websupport
];
] ++ lib.optional (pythonOlder "3.5") typing;
# Lots of tests. Needs network as well at some point.
doCheck = false;