mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python3Packages.jupyterlab-git: Disable tests on darwin
This commit is contained in:
parent
7afd50501b
commit
3c72ba6898
@ -1,4 +1,4 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -20,6 +20,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ notebook nbdime git ];
|
propagatedBuildInputs = [ notebook nbdime git ];
|
||||||
|
|
||||||
|
# all Tests on darwin fail or are skipped due to sandbox
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
@ -28,7 +31,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
pythonImportsCheck = [ "jupyterlab_git" ];
|
pythonImportsCheck = [ "jupyterlab_git" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Jupyter lab extension for version control with Git.";
|
description = "Jupyter lab extension for version control with Git.";
|
||||||
license = with licenses; [ bsd3 ];
|
license = with licenses; [ bsd3 ];
|
||||||
homepage = "https://github.com/jupyterlab/jupyterlab-git";
|
homepage = "https://github.com/jupyterlab/jupyterlab-git";
|
||||||
|
Loading…
Reference in New Issue
Block a user