mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-28 17:24:58 +08:00
9 lines
188 B
Nix
9 lines
188 B
Nix
with (import <nixpkgs> {});
|
|
let
|
|
customPython = python3.withPackages (ps: with ps; [ html_sanitizer ]);
|
|
in
|
|
mkShell {
|
|
buildInputs = [
|
|
customPython
|
|
];
|
|
}
|