push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,116 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
hatchling,
aenum,
aiohttp,
prompt-toolkit,
pygments,
nbformat,
jupyter-client,
typing-extensions,
fastjsonschema,
platformdirs,
pyperclip,
imagesize,
markdown-it-py,
linkify-it-py,
mdit-py-plugins,
flatlatex,
timg,
pillow,
sixelcrop,
universal-pathlib,
fsspec,
jupytext,
ipykernel,
pytestCheckHook,
pytest-asyncio,
pytest-cov-stub,
python-magic,
html2text,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "euporie";
version = "2.8.13";
pyproject = true;
src = fetchFromGitHub {
owner = "joouha";
repo = "euporie";
tag = "v${version}";
hash = "sha256-T+Zec5vb+y5qf7Xvv+QtVG+olnv2C0933tCJbEQAJuU=";
};
build-system = [
setuptools
hatchling
];
dependencies = [
aenum
aiohttp
prompt-toolkit
pygments
nbformat
jupyter-client
typing-extensions
fastjsonschema
platformdirs
pyperclip
imagesize
markdown-it-py
linkify-it-py
mdit-py-plugins
flatlatex
timg
pillow
sixelcrop
universal-pathlib
fsspec
jupytext
ipykernel
];
pythonRelaxDeps = [
"aenum"
"linkify-it-py"
"markdown-it-py"
"mdit-py-plugins"
"platformdirs"
];
doCheck = true;
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
pytest-cov-stub
python-magic
html2text
writableTmpDirAsHomeHook
];
meta = {
description = "Jupyter notebooks in the terminal";
longDescription = ''
Similar to `jupyter lab` or `jupyter notebook`, This package
can only be used inside a python environment. To quickly summon
a python environment with euporie, you can use:
```
nix-shell -p 'python3.withPackages (ps: with ps; [ euporie ])'
```
'';
homepage = "https://euporie.readthedocs.io/";
license = lib.licenses.mit;
mainProgram = "euporie";
maintainers = with lib.maintainers; [
euxane
renesat
];
};
}