summaryrefslogtreecommitdiff
path: root/shell.nix
blob: f75e9b28be4a0598951e7598d8d89a9e8b605260 (plain)
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
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = [
    (pkgs.python3.withPackages (ps: with ps; [
      pytest
      platformdirs

      inkex
      (callPackage ./pystitch.nix {})
      wxpython
      networkx
      shapely
      lxml
      appdirs
      numpy
      jinja2
      requests
      colormath2
      flask
      fonttools
      trimesh
      scipy
      diskcache
      flask-cors
    ]))
  ];
}