Skip to content

Commit fa2bf1b

Browse files
committedNov 17, 2017
octoprint: 1.3.4 -> 1.3.5
Its hash has changed again. Keep a table of old hashes for fact checking.
1 parent 348f938 commit fa2bf1b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎pkgs/applications/misc/octoprint/default.nix

+5-3
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,14 @@ let
5454

5555
in pythonPackages.buildPythonApplication rec {
5656
name = "OctoPrint-${version}";
57-
version = "1.3.4";
57+
version = "1.3.5";
58+
# 1.3.5, 2017-10-16, 77753ca02602d3a798d6b0a22535e6fd69ff448a
5859

5960
src = fetchFromGitHub {
6061
owner = "foosel";
6162
repo = "OctoPrint";
6263
rev = version;
63-
sha256 = "1hci8cfmbzcghla1vmrcn6zicm8nj50drm7gp2hkr0drglq5fgr2";
64+
sha256 = "13krv9i6gm4jn4cb327q4qma4xwwashjnc0dia8vlnbjbbvkrni4";
6465
};
6566

6667
# We need old Tornado
@@ -69,7 +70,7 @@ in pythonPackages.buildPythonApplication rec {
6970
semantic-version flask_principal werkzeug flaskbabel tornado
7071
psutil pyserial flask_login netaddr markdown sockjs-tornado
7172
pylru pyyaml sarge feedparser netifaces click websocket_client
72-
scandir chainmap future dateutil
73+
scandir chainmap future dateutil futures wrapt
7374
];
7475

7576
buildInputs = with pythonPackages; [ nose mock ddt ];
@@ -93,6 +94,7 @@ in pythonPackages.buildPythonApplication rec {
9394
-e 's,future>=[^"]*,future,g' \
9495
-e 's,pyserial>=[^"]*,pyserial,g' \
9596
-e 's,semantic_version>=[^"]*,semantic_version,g' \
97+
-e 's,wrapt>=[^"]*,wrapt,g' \
9698
setup.py
9799
'';
98100

0 commit comments

Comments
 (0)
Please sign in to comment.