nixos-config/pkgs/gitlog2json/shell.nix

18 lines
327 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.python3Packages.GitPython
pkgs.python3Packages.ipython
pkgs.python3Packages.elasticsearch
pkgs.python3Packages.click
(pkgs.callPackage ./default.nix {})
];
shellHook = ''
HISTFILE=${toString ./.}/.history
'';
}