Unverified Commit 5bb34d4a authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Package.dateparser: fix time bomb in test (#478375)

parents 3510b4b9 32742a36
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,
  fetchpatch,
  setuptools,
  python-dateutil,
  pytz,
@@ -35,6 +36,14 @@ buildPythonPackage rec {
    hash = "sha256-cUbY6c0JFzs1oZJOTnMXz3uCah2f50g8/3uWQXtwiGY=";
  };

  patches = [
    (fetchpatch {
      # https://github.com/scrapinghub/dateparser/pull/1294
      url = "https://github.com/scrapinghub/dateparser/commit/6b23348b9367d43bebc9a40b00dda3363eb2acd5.patch";
      hash = "sha256-LriRbGdYxF51Nwrm7Dp4kivyMikzmhytNQo0txMGsVI=";
    })
  ];

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [