Skip to content

Commit

Permalink
linkchecker: use the default requests package
Browse files Browse the repository at this point in the history
Fixes SSL issues.
  • Loading branch information
cillianderoiste committed Jun 1, 2018
1 parent 6d1a45c commit 8df34ab
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions pkgs/tools/networking/linkchecker/default.nix
@@ -1,19 +1,5 @@
{ stdenv, lib, fetchFromGitHub, fetchpatch, python2, gettext }:
let
# pin requests version until next release.
# see: https://github.com/linkcheck/linkchecker/issues/76
python2Packages = (python2.override {
packageOverrides = self: super: {
requests = super.requests.overridePythonAttrs(oldAttrs: rec {
version = "2.14.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "0lyi82a0ijs1m7k9w1mqwbmq1qjsac35fazx7xqyh8ws76xanx52";
};
});
};
}).pkgs;
in

python2Packages.buildPythonApplication rec {
pname = "LinkChecker";
version = "9.3.1";
Expand Down

0 comments on commit 8df34ab

Please sign in to comment.