python310Packages.jupyter-nbextensions-configurator: init at 0.6.3

This commit is contained in:
Gaetan Lepage 2023-07-13 09:46:17 +02:00
parent e4263f5e9a
commit 6eb2c2fddb
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, jupyter-contrib-core
}:
buildPythonPackage rec {
pname = "jupyter-nbextensions-configurator";
version = "0.6.3";
src = fetchFromGitHub {
owner = "jupyter-contrib";
repo = "jupyter_nbextensions_configurator";
rev = "refs/tags/${version}";
hash = "sha256-ovKYHATRAC5a5qTMv32ohU2gJd15/fRKXa5HI0zGp/0=";
};
propagatedBuildInputs = [ jupyter-contrib-core ];
pythonImportsCheck = [ "jupyter_nbextensions_configurator" ];
meta = with lib; {
description = "A jupyter notebook serverextension providing config interfaces for nbextensions";
homepage = "https://github.com/jupyter-contrib/jupyter_nbextensions_configurator";
license = licenses.bsd3;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View file

@ -5439,6 +5439,8 @@ self: super: with self; {
jupyter-lsp = callPackage ../development/python-modules/jupyter-lsp { };
jupyter-nbextensions-configurator = callPackage ../development/python-modules/jupyter-nbextensions-configurator { };
jupyter-server = callPackage ../development/python-modules/jupyter-server { };
jupyter-server-fileid = callPackage ../development/python-modules/jupyter-server-fileid { };