depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-nbextensions-configurator/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

28 lines
794 B
Nix

{ 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 ];
};
}