mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
14 lines
187 B
Nix
14 lines
187 B
Nix
{ nixpkgs ? import ../../.. { } }:
|
|
with nixpkgs;
|
|
let
|
|
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
|
|
in
|
|
mkShell {
|
|
packages = [
|
|
bash
|
|
pyEnv
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|
|
|