9 lines
118 B
Nix
9 lines
118 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
python = pkgs.python3.withPackages (pypkgs: with pypkgs; [
|
||
|
cryptography
|
||
|
]);
|
||
|
in
|
||
|
python.env
|