summary refs log tree commit diff
path: root/pkgs/applications/misc/octoprint/default.nix
blob: 3e8b35ba4350dd946e76802a290363f109a414fc (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
32
33
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonPackage rec {
  name = "OctoPrint-${version}";
  version = "1.2.9";

  src = fetchFromGitHub {
    owner = "foosel";
    repo = "OctoPrint";
    rev = version;
    sha256 = "00hhq52jqwykhk3p57mn9kkcjbjz6g9mcrp96vx8lqzhw42m3a86";
  };

  # We need old Tornado
  propagatedBuildInputs = with pythonPackages; [
    awesome-slugify flask_assets watchdog rsa requests2 pkginfo pylru
    semantic-version flask_principal sarge tornado_4_0_1 werkzeug netaddr flaskbabel
    netifaces psutil pyserial flask_login pyyaml sockjs-tornado
  ];

  postPatch = ''
    # Jailbreak dependencies
    sed -i \
      -e 's,rsa==,rsa>=,g' \
      -e 's,sockjs-tornado==,sockjs-tornado>=,g' \
      -e 's,Flask-Principal==,Flask-Principal>=,g' \
      -e 's,werkzeug==,werkzeug>=,g' \
      -e 's,netaddr==,netaddr>=,g' \
      -e 's,requests==,requests>=,g' \
      -e 's,netifaces==,netifaces>=,g' \
      -e 's,psutil==,psutil>=,g' \
      -e 's,PyYAML==,PyYAML>=,g' \
      setup.py
  '';

  meta = with stdenv.lib; {
    homepage = http://octoprint.org/;
    description = "The snappy web interface for your 3D printer";
    platforms = platforms.all;
    license = licenses.agpl3;
    maintainers = with maintainers; [ abbradar ];
  };
}