Merge pull request #196313 from r-ryantm/auto-update/python310Packages.nbclassic

python310Packages.nbclassic: 0.4.5 -> 0.4.6
main
Fabian Affolter 2 years ago committed by GitHub
commit 4a1659e667
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 62
      pkgs/development/python-modules/nbclassic/default.nix

@ -1,37 +1,77 @@
{ lib
, argon2-cffi
, buildPythonPackage
, fetchPypi
, ipykernel
, ipython_genutils
, jinja2
, jupyter_client
, jupyter_core
, jupyter_server
, nbconvert
, nbformat
, nest-asyncio
, notebook
, notebook-shim
, pythonOlder
, jupyter_server
, pytestCheckHook
, prometheus-client
, pytest-tornasync
, pytestCheckHook
, pythonOlder
, pyzmq
, send2trash
, terminado
, tornado
, traitlets
}:
buildPythonPackage rec {
pname = "nbclassic";
version = "0.4.5";
disabled = pythonOlder "3.6";
version = "0.4.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BXBMbN2DAb9S5A7Z+uOegNa8XS1EfcZ4McFFtN2Sh3k=";
hash = "sha256-PBjTQ7KS+TjvyTIFdh5nTyDsoG6tJeDu3Bf3riUr9W0=";
};
propagatedBuildInputs = [ jupyter_server notebook notebook-shim ];
propagatedBuildInputs = [
argon2-cffi
ipykernel
ipython_genutils
jinja2
jupyter_client
jupyter_core
jupyter_server
nbconvert
nbformat
nest-asyncio
notebook
notebook-shim
prometheus-client
pyzmq
send2trash
terminado
tornado
traitlets
];
checkInputs = [
pytestCheckHook
pytest-tornasync
pytestCheckHook
];
pythonImportsCheck = [
"nbclassic"
];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Jupyter lab environment notebook server extension.";
license = with licenses; [ bsd3 ];
description = "Jupyter lab environment notebook server extension";
homepage = "https://github.com/jupyterlab/nbclassic";
maintainers = [ maintainers.elohmeier ];
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ elohmeier ];
};
}

Loading…
Cancel
Save