88abffb7d2
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
13 lines
191 B
Nix
13 lines
191 B
Nix
{ nixpkgs ? import ../.. { }
|
|
}:
|
|
with nixpkgs;
|
|
let
|
|
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
|
|
in
|
|
mkShell {
|
|
packages = [
|
|
pyEnv
|
|
luarocks-nix
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|