Skip to content
Snippets Groups Projects
Select Git revision
  • restricted-sqlite-strategies
  • compare-structured-sql-dumps
  • main default protected
  • 235.backup-and-recovery.recovery
  • mypy
  • real-spender
  • github/fork/tp-la/real-spender
  • 260.metric-rejected-zkaps
  • implicit-lease-renewal-problems
  • mach-nix
  • github/fork/tp-la/deep-traverse
  • v0.0
12 results

shell.nix

Blame
  • shell.nix 313 B
    { pkgs ? import ./nixpkgs.nix { } }:
    let
      zkapauthorizer = pkgs.callPackage ./default.nix { };
    in
      (pkgs.python27.buildEnv.override {
        extraLibs = with pkgs.python27Packages; [
          fixtures
          testtools
          hypothesis
          pyhamcrest
          zkapauthorizer
        ];
        ignoreCollisions = true;
      }).env