mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
python3Package.schedule: comment broken test line
This commit is contained in:
parent
cb84271a75
commit
fbd86581ca
|
@ -15,6 +15,13 @@ buildPythonPackage rec {
|
|||
|
||||
buildInputs = [ mock ];
|
||||
|
||||
preCheck = ''
|
||||
# https://github.com/dbader/schedule/issues/488
|
||||
substituteInPlace test_schedule.py --replace \
|
||||
"self.assertRaises(ScheduleValueError, every().day.until, datetime.time(hour=5))" \
|
||||
"# self.assertRaises(ScheduleValueError, every().day.until, datetime.time(hour=5))"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python job scheduling for humans";
|
||||
homepage = "https://github.com/dbader/schedule";
|
||||
|
|
Loading…
Reference in a new issue