nix-book/source/recipes/python-nixpkg/shell/shell.nix
Amy de Buitléir 7ff82d6fb6 initial commit
2023-11-28 16:12:09 +00:00

9 lines
188 B
Nix

with (import <nixpkgs> {});
let
customPython = python3.withPackages (ps: with ps; [ html_sanitizer ]);
in
mkShell {
buildInputs = [
customPython
];
}