From 996f0acdb46dc0f2ef14a06ae0012771b43c087c Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 18 Oct 2019 13:06:42 -0400
Subject: [PATCH] Use the eventual Python package set instead of the previous
 overlay's

not sure this fixes anything but it might fix the PrivateStorageio build which
finds autobahn 19.1.1 instead of autobahn 19.8.1.

I think it is abstractly "more correct" too, maybe, if you can convince
yourself there is such a thing.
---
 overlays.nix | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/overlays.nix b/overlays.nix
index 7d536c4..06a2aab 100644
--- a/overlays.nix
+++ b/overlays.nix
@@ -13,21 +13,21 @@ self: super: {
       # ecosystem - the early stages of a slow, painful death by the thousand
       # cuts of incompatibilities between libraries with no maintained Python
       # 2 support.
-      typing = python-super.callPackage ./typing.nix { };
+      typing = python-self.callPackage ./typing.nix { };
 
       # new tahoe-lafs dependency
-      eliot = python-super.callPackage ./eliot.nix { };
+      eliot = python-self.callPackage ./eliot.nix { };
 
       # tahoe-lafs in nixpkgs is packaged as an application!  so we have to
       # re-package it ourselves as a library.
-      tahoe-lafs = python-super.callPackage ./tahoe-lafs.nix { };
+      tahoe-lafs = python-self.callPackage ./tahoe-lafs.nix { };
 
       # we depend on the privacypass python library, a set of bindings to the
       # challenge-bypass-ristretto Rust library
-      privacypass = python-super.callPackage ./privacypass.nix { };
+      privacypass = python-self.callPackage ./privacypass.nix { };
 
       # And add ourselves to the collection too.
-      zkapauthorizer = python-super.callPackage ./zkapauthorizer.nix { };
+      zkapauthorizer = python-self.callPackage ./zkapauthorizer.nix { };
     };
   };
 }
-- 
GitLab