Skip to content
Snippets Groups Projects
shell.nix 313 B
Newer Older
{ pkgs ? import ./nixpkgs.nix { } }:
  zkapauthorizer = pkgs.callPackage ./default.nix { };
in
  (pkgs.python27.buildEnv.override {
    extraLibs = with pkgs.python27Packages; [
      fixtures
      testtools
      hypothesis
      pyhamcrest
      zkapauthorizer
    ];
    ignoreCollisions = true;
  }).env