python3Packages.jupyterlab-pygments: init at 0.1.2
This commit is contained in:
parent
b59209334a
commit
4670a8f304
2 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, pygments }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jupyterlab_pygments";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jupyterlab";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "02lv63qalw4x6xs70n2w2p3c2cnhk91sr961wlbi77xs0g8fcman";
|
||||
};
|
||||
|
||||
# no tests exist on upstream repo
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ pygments ];
|
||||
|
||||
pythonImportsCheck = [ "jupyterlab_pygments" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Jupyterlab syntax coloring theme for pygments";
|
||||
homepage = "https://github.com/jupyterlab/jupyterlab-pygments/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -3229,6 +3229,8 @@ in {
|
|||
|
||||
jupyterlab_launcher = callPackage ../development/python-modules/jupyterlab_launcher { };
|
||||
|
||||
jupyterlab-pygments = callPackage ../development/python-modules/jupyterlab-pygments { };
|
||||
|
||||
jupyterlab_server = callPackage ../development/python-modules/jupyterlab_server { };
|
||||
|
||||
jupyter-repo2docker = callPackage ../development/python-modules/jupyter-repo2docker { pkgs-docker = pkgs.docker; };
|
||||
|
|
Loading…
Reference in a new issue