3
0
Fork 0
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:
Martin Weinelt 2023-02-03 00:45:06 +00:00 committed by GitHub
commit c4005b6b0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;