summaryrefslogtreecommitdiff
path: root/pkgs/shell/default.nix
blob: 84865e563c02a72401b18a878f6893429c48c7a8 (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
30
31
{ mkShellNoCC
, python3
, python3Packages
, websocat
, jq
, libfaketime
, fossil
, git
, internetarchive
, pywikibot
, pywb
, little-things
}:

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