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

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