about summary refs log tree commit diff
path: root/users/wpcarro/scratch/picoctf/challenge_166/shell.nix
blob: 85d3865a51bf16185b503681e72a0620cb8d867d (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs, ... }:

let
  python = pkgs.python3.withPackages (pypkgs: with pypkgs; [
    cryptography
  ]);
in
python.env