nixpkgs/pkgs/applications/editors/thonny/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2019-02-27 00:46:00 +03:00
{ stdenv, fetchFromGitHub, python3 }:
2018-08-25 20:40:26 +03:00
with python3.pkgs;
buildPythonApplication rec {
pname = "thonny";
2021-01-07 03:58:51 +03:00
version = "3.3.2";
2018-08-25 20:40:26 +03:00
2019-02-27 00:46:00 +03:00
src = fetchFromGitHub {
owner = pname;
2018-08-25 20:40:26 +03:00
repo = pname;
2019-02-27 00:46:00 +03:00
rev = "v${version}";
2021-01-07 03:58:51 +03:00
sha256 = "1pzy7v48x4ip8v6aqm8hl5ywx7xiqbsfypxxifih8gnlangp1n8y";
2018-08-25 20:40:26 +03:00
};
2018-10-20 21:01:01 +03:00
propagatedBuildInputs = with python3.pkgs; [
jedi
pyserial
tkinter
docutils
pylint
mypy
pyperclip
2019-02-27 00:46:00 +03:00
asttokens
2019-11-19 21:28:10 +03:00
send2trash
2018-10-20 21:01:01 +03:00
];
2018-08-25 20:40:26 +03:00
preInstall = ''
export HOME=$(mktemp -d)
'';
preFixup = ''
wrapProgram "$out/bin/thonny" \
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3.pkgs.jedi})
'';
# Tests need a DISPLAY
doCheck = false;
meta = with stdenv.lib; {
description = "Python IDE for beginners";
longDescription = ''
Thonny is a Python IDE for beginners. It supports different ways
of stepping through the code, step-by-step expression
evaluation, detailed visualization of the call stack and a mode
for explaining the concepts of references and heap.
'';
2020-03-12 12:43:39 +03:00
homepage = "https://www.thonny.org/";
2018-08-25 20:40:26 +03:00
license = licenses.mit;
maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
};
}