aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
index aeeb75b4c52d..d8ab5093ec28 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
@@ -1,4 +1,4 @@
-{ lib
+{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
@@ -10,16 +10,19 @@
buildPythonPackage rec {
pname = "jupyterlab_git";
- version = "0.22.1";
+ version = "0.23.2";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "e0fe2503d08dc00cda781b1ff89eb10c0decb45b5f8983b4970525b8f108dc02";
+ sha256 = "2c4c55c5bc651a670b13e89064f7aba7422b72ad6b3f2b3890ac72cc9a2d4089";
};
propagatedBuildInputs = [ notebook nbdime git ];
+ # all Tests on darwin fail or are skipped due to sandbox
+ doCheck = !stdenv.isDarwin;
+
checkInputs = [ pytest ];
checkPhase = ''
@@ -28,7 +31,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "jupyterlab_git" ];
- meta = with lib; {
+ meta = with stdenv.lib; {
description = "Jupyter lab extension for version control with Git.";
license = with licenses; [ bsd3 ];
homepage = "https://github.com/jupyterlab/jupyterlab-git";