mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python3Packages.ipython: enable tests, reformat
The infinite recursion with ipykernel was been resolved in 9e3b98531
.
This commit is contained in:
parent
3a5184aae6
commit
02acead6eb
1 changed files with 41 additions and 31 deletions
|
@ -3,69 +3,79 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
|
||||||
# Build dependencies
|
# Build dependencies
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
# Test dependencies
|
|
||||||
, nose
|
|
||||||
, pygments
|
|
||||||
# Runtime dependencies
|
# Runtime dependencies
|
||||||
, black
|
|
||||||
, jedi
|
|
||||||
, decorator
|
|
||||||
, matplotlib-inline
|
|
||||||
, pickleshare
|
|
||||||
, traitlets
|
|
||||||
, prompt-toolkit
|
|
||||||
, pexpect
|
|
||||||
, appnope
|
, appnope
|
||||||
, backcall
|
, backcall
|
||||||
|
, black
|
||||||
|
, decorator
|
||||||
|
, jedi
|
||||||
|
, matplotlib-inline
|
||||||
|
, pexpect
|
||||||
|
, pickleshare
|
||||||
|
, prompt-toolkit
|
||||||
|
, pygments
|
||||||
, stack-data
|
, stack-data
|
||||||
|
, traitlets
|
||||||
|
|
||||||
|
# Test dependencies
|
||||||
|
, pytestCheckHook
|
||||||
|
, testpath
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ipython";
|
pname = "ipython";
|
||||||
version = "8.0.1";
|
version = "8.0.1";
|
||||||
disabled = pythonOlder "3.7";
|
format = "pyproject";
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0x19sj4dlq7r4p1mqnpx9245r8dwvpjwd8n34snfm37a452lsmmb";
|
sha256 = "0x19sj4dlq7r4p1mqnpx9245r8dwvpjwd8n34snfm37a452lsmmb";
|
||||||
};
|
};
|
||||||
|
|
||||||
prePatch = lib.optionalString stdenv.isDarwin ''
|
buildInputs = [
|
||||||
substituteInPlace setup.py --replace "'gnureadline'" " "
|
glibcLocales
|
||||||
'';
|
];
|
||||||
|
|
||||||
buildInputs = [ glibcLocales ];
|
|
||||||
|
|
||||||
checkInputs = [ nose pygments ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
backcall
|
||||||
black
|
black
|
||||||
jedi
|
|
||||||
decorator
|
decorator
|
||||||
|
jedi
|
||||||
matplotlib-inline
|
matplotlib-inline
|
||||||
|
pexpect
|
||||||
pickleshare
|
pickleshare
|
||||||
stack-data
|
|
||||||
traitlets
|
|
||||||
prompt-toolkit
|
prompt-toolkit
|
||||||
pygments
|
pygments
|
||||||
pexpect
|
stack-data
|
||||||
backcall
|
traitlets
|
||||||
] ++ lib.optionals stdenv.isDarwin [appnope];
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
appnope
|
||||||
|
];
|
||||||
|
|
||||||
LC_ALL="en_US.UTF-8";
|
LC_ALL="en_US.UTF-8";
|
||||||
|
|
||||||
doCheck = false; # Circular dependency with ipykernel
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
nosetests
|
|
||||||
'';
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"IPython"
|
"IPython"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export HOME=$TMPDIR
|
||||||
|
|
||||||
|
# doctests try to fetch an image from the internet
|
||||||
|
substituteInPlace pytest.ini \
|
||||||
|
--replace "--ipdoctest-modules" "--ipdoctest-modules --ignore=IPython/core/display.py"
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
testpath
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "IPython: Productive Interactive Computing";
|
description = "IPython: Productive Interactive Computing";
|
||||||
homepage = "http://ipython.org/";
|
homepage = "http://ipython.org/";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue