summary refs log tree commit diff
path: root/pkgs/applications/editors/thonny
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-11-19 15:28:10 -0300
committerJon <jonringer@users.noreply.github.com>2019-11-19 13:37:45 -0800
commitb026faf0d7836b043e9f6a2f3320a577804810a3 (patch)
tree86b1ee88ae9995fd7d98c08a8b1b07562ea47cf3 /pkgs/applications/editors/thonny
parent2e79c2d969d8603b452d13b1b257d0ad762657f0 (diff)
downloadnixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar.gz
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar.bz2
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar.lz
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar.xz
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.tar.zst
nixpkgs-b026faf0d7836b043e9f6a2f3320a577804810a3.zip
thonny: 3.2.0b7 -> 3.2.3
Diffstat (limited to 'pkgs/applications/editors/thonny')
-rw-r--r--pkgs/applications/editors/thonny/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/thonny/default.nix b/pkgs/applications/editors/thonny/default.nix
index a6179452f4d..e1c939c93c9 100644
--- a/pkgs/applications/editors/thonny/default.nix
+++ b/pkgs/applications/editors/thonny/default.nix
@@ -4,13 +4,13 @@ with python3.pkgs;
 
 buildPythonApplication rec {
   pname = "thonny";
-  version = "3.2.0b7";
+  version = "3.2.3";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "v${version}";
-    sha256 = "0p0hi5rj873cszx9rpbjjq51vs6xys3rlq9v1rya710i3fnw0hqh";
+    sha256 = "0wgjwjh6296vs8awl4rylb5nshj9q9kzxv7j4vlmiabll06mx6gi";
   };
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -22,6 +22,7 @@ buildPythonApplication rec {
     mypy
     pyperclip
     asttokens
+    send2trash
   ];
 
   preInstall = ''