nixpkgs/pkgs/development/python-modules/notebook/default.nix

74 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, nose
2017-10-23 11:40:02 +00:00
, nose_warnings_filters
, glibcLocales
2017-10-23 11:40:02 +00:00
, isPy3k
, mock
, jinja2
, tornado
, ipython_genutils
, traitlets
, jupyter_core
, jupyter_client
, nbformat
, nbconvert
, ipykernel
, terminado
, requests
2018-01-16 21:08:03 +00:00
, send2trash
, pexpect
2018-07-28 14:43:01 +00:00
, prometheus_client
}:
buildPythonPackage rec {
pname = "notebook";
2019-01-17 15:13:03 +00:00
version = "5.7.4";
src = fetchPypi {
inherit pname version;
2019-01-17 15:13:03 +00:00
sha256 = "d908673a4010787625c8952e91a22adf737db031f2aa0793ad92f6558918a74a";
};
2017-10-23 11:40:02 +00:00
LC_ALL = "en_US.utf8";
checkInputs = [ nose glibcLocales ]
2017-10-23 11:40:02 +00:00
++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]);
2017-10-23 11:40:02 +00:00
propagatedBuildInputs = [
2018-01-16 21:08:03 +00:00
jinja2 tornado ipython_genutils traitlets jupyter_core send2trash
2017-10-23 11:40:02 +00:00
jupyter_client nbformat nbconvert ipykernel terminado requests pexpect
2018-07-28 14:43:01 +00:00
prometheus_client
2017-10-23 11:40:02 +00:00
];
2017-10-23 11:40:02 +00:00
# disable warning_filters
preCheck = lib.optionalString (!isPy3k) ''
echo "" > setup.cfg
2017-10-23 11:40:02 +00:00
'';
2018-06-22 10:46:13 +00:00
postPatch = ''
# Remove selenium tests
rm -rf notebook/tests/selenium
'';
checkPhase = ''
2017-10-23 11:40:02 +00:00
runHook preCheck
mkdir tmp
HOME=tmp nosetests -v ${if (stdenv.isDarwin) then ''
--exclude test_delete \
--exclude test_checkpoints_follow_file
''
else ""}
'';
meta = {
description = "The Jupyter HTML notebook is a web-based notebook environment for interactive computing";
homepage = http://jupyter.org/;
license = lib.licenses.bsd3;
2017-10-23 11:40:02 +00:00
maintainers = with lib.maintainers; [ fridh globin ];
};
2017-10-23 11:40:02 +00:00
}