Files
nixpkgs/pkgs/by-name/th/thonny/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

92 lines
2.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
python3,
makeDesktopItem,
copyDesktopItems,
desktopToDarwinBundle,
}:
python3.pkgs.buildPythonApplication rec {
pname = "thonny";
version = "4.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "thonny";
repo = "thonny";
tag = "v${version}";
hash = "sha256-RnjnXB5jU13uwRpL/Pn14QY7fRbRkq09Vopc3fv+z+Y=";
};
nativeBuildInputs = [
copyDesktopItems
]
++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
desktopItems = [
(makeDesktopItem {
name = "Thonny";
exec = "thonny";
icon = "thonny";
desktopName = "Thonny";
comment = "Python IDE for beginners";
categories = [
"Development"
"IDE"
];
})
];
build-system = with python3.pkgs; [ setuptools ];
dependencies =
with python3.pkgs;
(
[
jedi
pyserial
tkinter
docutils
pylint
mypy
pyperclip
asttokens
send2trash
]
++ lib.optionals stdenv.hostPlatform.isLinux [
dbus-next
]
);
preFixup = ''
wrapProgram "$out/bin/thonny" \
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3.pkgs.jedi})
'';
postInstall = ''
install -Dm644 ./packaging/icons/thonny-48x48.png $out/share/icons/hicolor/48x48/apps/thonny.png
'';
# Tests need a DISPLAY
doCheck = false;
pythonImportsCheck = [ "thonny" ];
meta = {
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.
'';
homepage = "https://www.thonny.org/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ leenaars ];
platforms = lib.platforms.unix;
mainProgram = "thonny";
};
}