python2Packages.urllib3: keep 1.26.2 for nixops

This commit is contained in:
Frederik Rietdijk
2021-03-14 09:30:59 +01:00
parent 3a7674c896
commit 24887716da
2 changed files with 80 additions and 3 deletions
+6 -3
View File
@@ -8524,9 +8524,12 @@ in {
urlgrabber = callPackage ../development/python-modules/urlgrabber { };
urllib3 = callPackage ../development/python-modules/urllib3 {
pytestCheckHook = self.pytestCheckHook_6_1;
};
urllib3 = if isPy3k then
callPackage ../development/python-modules/urllib3 {
pytestCheckHook = self.pytestCheckHook_6_1;
}
else
callPackage ../development/python-modules/urllib3/2.nix { };
urwid = callPackage ../development/python-modules/urwid { };