2021-11-05 19:20:16 +00:00
|
|
|
{ lib, fetchFromGitHub, python3, makeDesktopItem, copyDesktopItems }:
|
2018-08-25 18:40:26 +01:00
|
|
|
|
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "thonny";
|
2021-08-15 01:08:51 +01:00
|
|
|
version = "3.3.14";
|
2018-08-25 18:40:26 +01:00
|
|
|
|
2019-02-26 21:46:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
2018-08-25 18:40:26 +01:00
|
|
|
repo = pname;
|
2019-02-26 21:46:00 +00:00
|
|
|
rev = "v${version}";
|
2021-08-15 01:08:51 +01:00
|
|
|
sha256 = "13l8blq7y6p7a235x2lfiqml1bd4ba2brm3vfvs8wasjh3fvm9g5";
|
2018-08-25 18:40:26 +01:00
|
|
|
};
|
|
|
|
|
2021-11-05 19:20:16 +00:00
|
|
|
nativeBuildInputs = [ copyDesktopItems ];
|
|
|
|
|
|
|
|
desktopItems = [ (makeDesktopItem {
|
|
|
|
name = "Thonny";
|
|
|
|
exec = "thonny";
|
|
|
|
icon = "thonny";
|
|
|
|
desktopName = "Thonny";
|
|
|
|
comment = "Python IDE for beginners";
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Development" "IDE" ];
|
2021-11-05 19:20:16 +00:00
|
|
|
}) ];
|
|
|
|
|
2018-10-20 19:01:01 +01:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
jedi
|
|
|
|
pyserial
|
|
|
|
tkinter
|
|
|
|
docutils
|
|
|
|
pylint
|
|
|
|
mypy
|
|
|
|
pyperclip
|
2019-02-26 21:46:00 +00:00
|
|
|
asttokens
|
2019-11-19 18:28:10 +00:00
|
|
|
send2trash
|
2018-10-20 19:01:01 +01:00
|
|
|
];
|
2018-08-25 18:40:26 +01:00
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/thonny" \
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3.pkgs.jedi})
|
|
|
|
'';
|
|
|
|
|
2021-11-05 19:20:16 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 ./packaging/icons/thonny-48x48.png $out/share/icons/hicolor/48x48/apps/thonny.png
|
|
|
|
'';
|
|
|
|
|
2018-08-25 18:40:26 +01:00
|
|
|
# Tests need a DISPLAY
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-08-25 18:40:26 +01:00
|
|
|
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 09:43:39 +00:00
|
|
|
homepage = "https://www.thonny.org/";
|
2018-08-25 18:40:26 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|