From a0dc0de8bce2b4d854a3f8199d46d606ffc4455c Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 27 Sep 2021 11:58:58 -0400
Subject: [PATCH] try to avoid conflicting versions in the closure

---
 zkapauthorizer.nix | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/zkapauthorizer.nix b/zkapauthorizer.nix
index 89639e0..484c364 100644
--- a/zkapauthorizer.nix
+++ b/zkapauthorizer.nix
@@ -34,15 +34,17 @@ buildPythonPackage rec {
   ];
 
   propagatedBuildInputs = [
-    attrs
-    zope_interface
     aniso8601
-    # Inherit eliot from tahoe-lafs
-    # eliot
-    twisted
     tahoe-lafs
     challenge-bypass-ristretto
-    treq
+
+    # Inherit some things from tahoe-lafs to avoid conflicting versions
+    #
+    # attrs
+    # zope_interface
+    # twisted
+    # eliot
+    # treq
   ];
 
   checkInputs = [
-- 
GitLab