Merge pull request #115286 from pingiun/patch-2
python3Packages.APScheduler: add setuptools
This commit is contained in:
commit
0cb934f20d
|
@ -15,6 +15,7 @@
|
|||
, tzlocal
|
||||
, funcsigs
|
||||
, futures
|
||||
, setuptools
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
|
@ -47,12 +48,15 @@ buildPythonPackage rec {
|
|||
pytz
|
||||
tzlocal
|
||||
funcsigs
|
||||
setuptools
|
||||
] ++ lib.optional (!isPy3k) futures;
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "apscheduler" ];
|
||||
|
||||
# Somehow it cannot find pytestcov
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue