nixpkgs/pkgs/development/python-modules/ipython/default.nix
Frederik Rietdijk 5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00

118 lines
2.3 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
# Build dependencies
, setuptools
# Runtime dependencies
, decorator
, exceptiongroup
, jedi
, matplotlib-inline
, pexpect
, prompt-toolkit
, pygments
, stack-data
, traitlets
, typing-extensions
# Optional dependencies
, ipykernel
, ipyparallel
, ipywidgets
, matplotlib
, nbconvert
, nbformat
, notebook
, qtconsole
# Test dependencies
, pickleshare
, pytest-asyncio
, pytest7CheckHook
, testpath
}:
buildPythonPackage rec {
pname = "ipython";
version = "8.23.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-dGjtr09t4+G5EuV/ZsJB5v08cJny7CE24jnhQugAJ00=";
};
build-system = [
setuptools
];
dependencies = [
decorator
jedi
matplotlib-inline
pexpect
prompt-toolkit
pygments
stack-data
traitlets
] ++ lib.optionals (pythonOlder "3.11") [
exceptiongroup
] ++ lib.optionals (pythonOlder "3.12") [
typing-extensions
];
optional-dependencies = {
kernel = [ ipykernel ];
nbconvert = [ nbconvert ];
nbformat = [ nbformat ];
notebook = [
ipywidgets
notebook
];
parallel = [ ipyparallel ];
qtconsole = [ qtconsole ];
matplotlib = [ matplotlib ];
};
pythonImportsCheck = [
"IPython"
];
preCheck = ''
export HOME=$TMPDIR
# doctests try to fetch an image from the internet
substituteInPlace pyproject.toml \
--replace '"--ipdoctest-modules",' '"--ipdoctest-modules", "--ignore=IPython/core/display.py",'
'';
nativeCheckInputs = [
pickleshare
pytest-asyncio
pytest7CheckHook
testpath
];
disabledTests = [
# UnboundLocalError: local variable 'child' referenced before assignment
"test_system_interrupt"
] ++ lib.optionals (stdenv.isDarwin) [
# FileNotFoundError: [Errno 2] No such file or directory: 'pbpaste'
"test_clipboard_get"
];
meta = with lib; {
description = "IPython: Productive Interactive Computing";
downloadPage = "https://github.com/ipython/ipython/";
homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipython/blob/${version}/docs/source/whatsnew/version${lib.versions.major version}.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor ];
};
}