lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #189312 from mweinelt/dateparser-patch-flaky-test

authored by

Martin Weinelt and committed by
GitHub
dc47970f cc5f7c2f

+7
+7
pkgs/development/python-modules/dateparser/default.nix
··· 29 29 sha256 = "sha256-bDup3q93Zq+pvwsy/lQy2byOMjG6C/+7813hWQMbZRU="; 30 30 }; 31 31 32 + postPatch = '' 33 + # https://github.com/scrapinghub/dateparser/issues/1053 34 + substituteInPlace tests/test_search.py --replace \ 35 + "('June 2020', datetime.datetime(2020, 6, datetime.datetime.utcnow().day, 0, 0))," \ 36 + "('June 2020', datetime.datetime(2020, 6, min(30, datetime.datetime.utcnow().day), 0, 0))," 37 + ''; 38 + 32 39 propagatedBuildInputs = [ 33 40 # install_requires 34 41 python-dateutil pytz regex tzlocal