forked from mirrors/nixpkgs
Merge pull request #214132 from drupol/python/update-jupyterlab-pygments
python3Packages.jupyterlab-pygments: 0.1.2 -> 0.2.2
This commit is contained in:
commit
c4005b6b0d
|
@ -1,16 +1,18 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, pygments }:
|
{ lib, buildPythonPackage, fetchPypi, pygments, jupyter-packaging }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyterlab_pygments";
|
pname = "jupyterlab_pygments";
|
||||||
version = "0.1.2";
|
version = "0.2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchPypi {
|
||||||
owner = "jupyterlab";
|
inherit pname version;
|
||||||
repo = pname;
|
hash = "sha256-dAXX/eYIGdkFqfqM6J5M2DDjGM2tIqADD3qQHacFWF0=";
|
||||||
rev = version;
|
|
||||||
sha256 = "02lv63qalw4x6xs70n2w2p3c2cnhk91sr961wlbi77xs0g8fcman";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
jupyter-packaging
|
||||||
|
];
|
||||||
|
|
||||||
# no tests exist on upstream repo
|
# no tests exist on upstream repo
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue