7 lines
128 B
Nix
7 lines
128 B
Nix
|
{ pkgs ? import ../nix { } }:
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
(import ./python.nix { inherit pkgs; debug = true; })
|
||
|
];
|
||
|
}
|