From 2571a7855e51f8ba958ee3529de4bc6eb831596f Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 4 Oct 2019 13:03:12 -0400 Subject: [PATCH] Expose ZKAPAuthorizer in python27Packages --- overlays.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overlays.nix b/overlays.nix index 21c2e6a..a22a766 100644 --- a/overlays.nix +++ b/overlays.nix @@ -22,6 +22,9 @@ self: super: { # we depend on the privacypass python library, a set of bindings to the # challenge-bypass-ristretto Rust library privacypass = python-super.callPackage ./privacypass.nix { }; + + # And add ourselves to the collection too. + zkapauthorizer = python-super.callPackage ./zkapauthorizer.nix { }; }; }; } -- GitLab