Merge pull request #30762 from mayflower/jupyter-update
Update jupyter and enable a few tests
This commit is contained in:
@@ -10798,32 +10798,7 @@ in {
|
||||
|
||||
jupyter_client = callPackage ../development/python-modules/jupyter_client { };
|
||||
|
||||
jupyter_core = buildPythonPackage rec {
|
||||
version = "4.3.0";
|
||||
name = "jupyter_core-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/j/jupyter_core/${name}.tar.gz";
|
||||
sha256 = "a96b129e1641425bf057c3d46f4f44adce747a7d60107e8ad771045c36514d40";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest mock ];
|
||||
propagatedBuildInputs = with self; [ ipython traitlets];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
# Several tests fail due to being in a chroot
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Jupyter core package. A base package on which Jupyter projects rely";
|
||||
homepage = http://jupyter.org/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ fridh ];
|
||||
};
|
||||
};
|
||||
jupyter_core = callPackage ../development/python-modules/jupyter_core { };
|
||||
|
||||
jsonpath_rw = buildPythonPackage rec {
|
||||
name = "jsonpath-rw-${version}";
|
||||
@@ -11902,23 +11877,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
mistune = buildPythonPackage rec {
|
||||
version = "0.7.1";
|
||||
name = "mistune-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/m/mistune/${name}.tar.gz";
|
||||
sha256 = "6076dedf768348927d991f4371e5a799c6a0158b16091df08ee85ee231d929a7";
|
||||
};
|
||||
|
||||
buildInputs = with self; [nose];
|
||||
|
||||
meta = {
|
||||
description = "The fastest markdown parser in pure Python";
|
||||
homepage = https://github.com/lepture/mistune;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
mistune = callPackage ../development/python-modules/mistune { };
|
||||
|
||||
brotlipy = buildPythonPackage rec {
|
||||
name = "brotlipy-${version}";
|
||||
@@ -13151,6 +13110,8 @@ in {
|
||||
buildInputs = with self; [ nose ];
|
||||
};
|
||||
|
||||
nose_warnings_filters = callPackage ../development/python-modules/nose_warnings_filters { };
|
||||
|
||||
notebook = callPackage ../development/python-modules/notebook { };
|
||||
|
||||
notify = pkgs.stdenv.mkDerivation (rec {
|
||||
|
||||
Reference in New Issue
Block a user