mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
17 lines
265 B
Nix
17 lines
265 B
Nix
{ pkgs ? import ../../../../.. { } }:
|
|
|
|
# Ideally, pkgs points to default.nix file of Nixpkgs official tree
|
|
with pkgs;
|
|
let
|
|
pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
|
|
in
|
|
|
|
mkShell {
|
|
packages = [
|
|
bash
|
|
pyEnv
|
|
nix
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|