Skip to content
Snippets Groups Projects
default.nix 579 B
Newer Older
{ pkgs ? import <nixpkgs> { }
, hypothesisProfile ? null
, collectCoverage ? false
, testSuite ? null
, trialArgs ? null
, tahoe-lafs ? null
let
  pkgs' = pkgs.extend (import ./overlays.nix);
  callPackage = pkgs'.python27Packages.callPackage;
  tahoe-lafs' = (
    if tahoe-lafs != null
    then tahoe-lafs
    else callPackage ./tahoe-lafs.nix { }
  );
in
callPackage ./zkapauthorizer.nix {
  challenge-bypass-ristretto = callPackage ./python-challenge-bypass-ristretto.nix { };
  inherit hypothesisProfile collectCoverage testSuite trialArgs;
  tahoe-lafs = tahoe-lafs';