summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/thonny
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2019-02-26 22:46:00 +0100
committerMichiel Leenaars <ml.software@leenaa.rs>2019-03-01 08:18:14 +0100
commit3cf1813ca191e5d108f766da22e07c545bae244f (patch)
tree73b99f60a12971c9aa936f3db0164f64ae5c6ce1 /pkgs/applications/editors/thonny
parentca9af55199c918174260a7bb24790aff1de3293d (diff)
thonny: 3.0.5 -> 3.1.2
Diffstat (limited to 'pkgs/applications/editors/thonny')
-rw-r--r--pkgs/applications/editors/thonny/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/editors/thonny/default.nix b/pkgs/applications/editors/thonny/default.nix
index ba68a5420a88..5f87aad8a871 100644
--- a/pkgs/applications/editors/thonny/default.nix
+++ b/pkgs/applications/editors/thonny/default.nix
@@ -1,16 +1,16 @@
-{ stdenv, fetchFromBitbucket, python3 }:
+{ stdenv, fetchFromGitHub, python3 }:
with python3.pkgs;
buildPythonApplication rec {
pname = "thonny";
- version = "3.0.5";
+ version = "3.1.2";
- src = fetchFromBitbucket {
- owner = "plas";
+ src = fetchFromGitHub {
+ owner = pname;
repo = pname;
- rev = "e5a1ad4ae9d24066a769489b1e168b4bd6e00b03";
- sha256 = "1lrl5pj9dpw9i5ij863hd47gfd15nmvglqkl2ldwgfn7kgpsdkz5";
+ rev = "v${version}";
+ sha256 = "1simqqxm72k5zhavhllkinsyw8ggy6fjs5ppj82g3l5g3919pfna";
};
propagatedBuildInputs = with python3.pkgs; [
@@ -21,6 +21,7 @@ buildPythonApplication rec {
pylint
mypy
pyperclip
+ asttokens
];
preInstall = ''