about summary refs log tree commit diff
path: root/users/wpcarro/scratch/picoctf/challenge_166/shell.nix
{ pkgs, ... }:

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