about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-10-20 22:58:07 +0200
committerGitHub <noreply@github.com>2018-10-20 22:58:07 +0200
commitd75c5585cd0279142dda3c2263bcd185a0ab5f7a (patch)
tree388fe59d48c55a5494fc6bfa73a9c253c48ad7e8 /pkgs/applications
parent183310a75bf9828d0af42094a5f525b0cd3d8ff7 (diff)
parent2fd8732ccc1f34e9d6a47fc6cdfa8e6cf82ee285 (diff)
downloadnixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar.gz
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar.bz2
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar.lz
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar.xz
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.tar.zst
nixlib-d75c5585cd0279142dda3c2263bcd185a0ab5f7a.zip
Merge pull request #48755 from leenaars/thonny
thonny: 3.0.0b3 -> 3.0.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/thonny/default.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/applications/editors/thonny/default.nix b/pkgs/applications/editors/thonny/default.nix
index a4ea354ebf69..cccf59f3e7bb 100644
--- a/pkgs/applications/editors/thonny/default.nix
+++ b/pkgs/applications/editors/thonny/default.nix
@@ -4,16 +4,24 @@ with python3.pkgs;
 
 buildPythonApplication rec {
   pname = "thonny";
-  version = "3.0.0b3";
+  version = "3.0.1";
 
   src = fetchFromBitbucket {
     owner = "plas";
     repo = pname;
-    rev = "a511d4539c532b6dddf6d7f1586d30e1ac35bd86";
-    sha256 = "1s3pp97r6p3j81idglnml4faxryk7saszxmv3gys1agdfj75qczr";
+    rev = "f66bd266deda11534561a01ede53cf1b71d2c3c0";
+    sha256 = "0mjskb0gyddybvlbhm10ch1rwzvmci95b018x67bh67bybdl4hm7";
   };
 
-  propagatedBuildInputs = with python3.pkgs; [ jedi pyserial tkinter docutils pylint ];
+  propagatedBuildInputs = with python3.pkgs; [
+    jedi
+    pyserial
+    tkinter
+    docutils
+    pylint
+    mypy
+    pyperclip
+  ];
 
   preInstall = ''
     export HOME=$(mktemp -d)