python.pkgs.sphinx: fix python < 3.5 build
This commit is contained in:
parent
42e639066b
commit
dfd905b548
@ -21,6 +21,7 @@
|
|||||||
, imagesize
|
, imagesize
|
||||||
, requests
|
, requests
|
||||||
, sphinxcontrib-websupport
|
, sphinxcontrib-websupport
|
||||||
|
, typing
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -52,7 +53,7 @@ buildPythonPackage rec {
|
|||||||
imagesize
|
imagesize
|
||||||
requests
|
requests
|
||||||
sphinxcontrib-websupport
|
sphinxcontrib-websupport
|
||||||
];
|
] ++ lib.optional (pythonOlder "3.5") typing;
|
||||||
|
|
||||||
# Lots of tests. Needs network as well at some point.
|
# Lots of tests. Needs network as well at some point.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user