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