Skip to content
Snippets Groups Projects
Commit d4ea88c7 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

See if latest pyOpenSSL release fixes test failures against 1.1.1k

parent 5b44ddc7
Branches
No related tags found
1 merge request!69WIP: Upgrade to OpenSSL 1.1.1k
Pipeline #339 failed
...@@ -21,6 +21,8 @@ let ...@@ -21,6 +21,8 @@ let
# And explicitly configure it with our preferred version of Tahoe-LAFS. # And explicitly configure it with our preferred version of Tahoe-LAFS.
inherit tahoe-lafs; inherit tahoe-lafs;
}; };
pyopenssl = python-self.callPackage ../pkgs/pyopenssl.nix { };
}; };
in in
self: super: { self: super: {
......
{ fetchPypi, pyopenssl }:
pyopenssl.overrideAttrs (old: {
version = "20.0.1";
inherit (old) name;
src = fetchPypi {
inherit name;
sha256 = "aeca66338f6de19d1aa46ed634c3b9ae519a64b458f8468aec688e7e3c20f201";
};
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment