15 lines
195 B
Nix
15 lines
195 B
Nix
|
{ nixpkgs ? import ../../.. { } }:
|
||
|
with nixpkgs;
|
||
|
let
|
||
|
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
|
||
|
in
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
bash
|
||
|
pyEnv
|
||
|
nix
|
||
|
nix-prefetch-scripts
|
||
|
];
|
||
|
}
|
||
|
|