2018-03-19 00:02:14 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2017-04-18 10:54:43 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
2017-10-23 12:40:02 +01:00
|
|
|
, nose_warnings_filters
|
2017-04-18 10:54:43 +01:00
|
|
|
, glibcLocales
|
2017-10-23 12:40:02 +01:00
|
|
|
, isPy3k
|
2017-04-18 10:54:43 +01:00
|
|
|
, mock
|
|
|
|
, jinja2
|
|
|
|
, tornado
|
|
|
|
, ipython_genutils
|
|
|
|
, traitlets
|
|
|
|
, jupyter_core
|
|
|
|
, jupyter_client
|
|
|
|
, nbformat
|
|
|
|
, nbconvert
|
|
|
|
, ipykernel
|
|
|
|
, terminado
|
2017-05-07 11:55:45 +01:00
|
|
|
, requests
|
2018-01-16 21:08:03 +00:00
|
|
|
, send2trash
|
2017-04-18 10:54:43 +01:00
|
|
|
, pexpect
|
2018-07-28 15:43:01 +01:00
|
|
|
, prometheus_client
|
2017-04-18 10:54:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "notebook";
|
2020-02-06 09:16:04 +00:00
|
|
|
version = "6.0.3";
|
2019-10-17 16:30:58 +01:00
|
|
|
disabled = !isPy3k;
|
2017-04-18 10:54:43 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-06 09:16:04 +00:00
|
|
|
sha256 = "47a9092975c9e7965ada00b9a20f0cf637d001db60d241d479f53c0be117ad48";
|
2017-04-18 10:54:43 +01:00
|
|
|
};
|
|
|
|
|
2017-10-23 12:40:02 +01:00
|
|
|
LC_ALL = "en_US.utf8";
|
2017-04-18 10:54:43 +01:00
|
|
|
|
2018-03-22 09:41:10 +00:00
|
|
|
checkInputs = [ nose glibcLocales ]
|
2017-10-23 12:40:02 +01:00
|
|
|
++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]);
|
2017-04-18 10:54:43 +01:00
|
|
|
|
2017-10-23 12:40:02 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-01-16 21:08:03 +00:00
|
|
|
jinja2 tornado ipython_genutils traitlets jupyter_core send2trash
|
2017-10-23 12:40:02 +01:00
|
|
|
jupyter_client nbformat nbconvert ipykernel terminado requests pexpect
|
2018-07-28 15:43:01 +01:00
|
|
|
prometheus_client
|
2017-10-23 12:40:02 +01:00
|
|
|
];
|
2017-04-18 10:54:43 +01:00
|
|
|
|
2017-10-23 12:40:02 +01:00
|
|
|
# disable warning_filters
|
|
|
|
preCheck = lib.optionalString (!isPy3k) ''
|
2018-03-22 12:48:09 +00:00
|
|
|
echo "" > setup.cfg
|
2017-10-23 12:40:02 +01:00
|
|
|
'';
|
2018-03-22 09:41:10 +00:00
|
|
|
|
2018-06-22 11:46:13 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Remove selenium tests
|
|
|
|
rm -rf notebook/tests/selenium
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2017-04-18 10:54:43 +01:00
|
|
|
checkPhase = ''
|
2017-10-23 12:40:02 +01:00
|
|
|
runHook preCheck
|
|
|
|
mkdir tmp
|
2018-03-19 00:02:14 +00:00
|
|
|
HOME=tmp nosetests -v ${if (stdenv.isDarwin) then ''
|
|
|
|
--exclude test_delete \
|
|
|
|
--exclude test_checkpoints_follow_file
|
|
|
|
''
|
|
|
|
else ""}
|
2017-04-18 10:54:43 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-14 20:20:54 +01:00
|
|
|
# Some of the tests use localhost networking.
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2017-04-18 10:54:43 +01:00
|
|
|
meta = {
|
|
|
|
description = "The Jupyter HTML notebook is a web-based notebook environment for interactive computing";
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://jupyter.org/;
|
2017-04-18 10:54:43 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-04-18 10:54:43 +01:00
|
|
|
};
|
2017-10-23 12:40:02 +01:00
|
|
|
}
|