summary refs log tree commit diff stats
path: root/gitlab/shell.nix
blob: 5669f4f4d8dd65c5e2102f82bb6648f3bee5959c (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? (import <nixpkgs> {}).pkgs }:
with pkgs;
mkShell {
  buildInputs = [
    python312Packages.tomlkit
  ];
}