mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2026-01-28 17:37:13 +08:00
initial commit
This commit is contained in:
parent
7761303cd4
commit
7ff82d6fb6
4 changed files with 50 additions and 0 deletions
9
source/recipes/python-nixpkg/shell/shell.nix
Normal file
9
source/recipes/python-nixpkg/shell/shell.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
with (import <nixpkgs> {});
|
||||
let
|
||||
customPython = python3.withPackages (ps: with ps; [ html_sanitizer ]);
|
||||
in
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
customPython
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue