summaryrefslogtreecommitdiff
path: root/pkgs/shell/default.nix
blob: 9dfba084095e18c0b1187672129a16f9bb3e04fd (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ mkShellNoCC
, python3
, python3Packages
, websocat
, jq
, libfaketime
, fossil
, git
, internetarchive
, pywikibot-scripts
}:

mkShellNoCC {
  packages = [
    (python3.withPackages (p: [
      p.requests
      p.lxml
      p.pywikibot
      pywikibot-scripts
    ]))
    python3Packages.pywikibot
    pywikibot-scripts
    websocat # connect to websocket
    jq
    libfaketime # used by my fossil script
    fossil git # scms
    internetarchive # ia cmdline tool
  ];
}