Merge pull request #115286 from pingiun/patch-2

python3Packages.APScheduler: add setuptools
This commit is contained in:
Jörg Thalheim 2021-03-07 16:02:31 +00:00 committed by GitHub
commit 0cb934f20d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@
, tzlocal , tzlocal
, funcsigs , funcsigs
, futures , futures
, setuptools
, isPy3k , isPy3k
}: }:
@ -47,12 +48,15 @@ buildPythonPackage rec {
pytz pytz
tzlocal tzlocal
funcsigs funcsigs
setuptools
] ++ lib.optional (!isPy3k) futures; ] ++ lib.optional (!isPy3k) futures;
checkPhase = '' checkPhase = ''
py.test py.test
''; '';
pythonImportsCheck = [ "apscheduler" ];
# Somehow it cannot find pytestcov # Somehow it cannot find pytestcov
doCheck = false; doCheck = false;