fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
88 lines
1.7 KiB
Nix
88 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
git,
|
|
jupyter-server,
|
|
hatch-jupyter-builder,
|
|
hatch-nodejs-version,
|
|
hatchling,
|
|
jupyterlab,
|
|
nbdime,
|
|
nbformat,
|
|
pexpect,
|
|
pytest-asyncio,
|
|
pytest-jupyter,
|
|
pytest-tornasync,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
traitlets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyterlab-git";
|
|
version = "0.50.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "jupyterlab_git";
|
|
inherit version;
|
|
hash = "sha256-v08Go/vCsquE6l1SMmqg4LjM9OmjNX+jGKEZVg4cak0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatch-jupyter-builder
|
|
hatch-nodejs-version
|
|
hatchling
|
|
jupyterlab
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jupyter-server
|
|
nbdime
|
|
git
|
|
nbformat
|
|
pexpect
|
|
traitlets
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
jupyterlab
|
|
pytest-asyncio
|
|
pytest-jupyter
|
|
pytest-tornasync
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
"jupyterlab_git/tests/test_handlers.py"
|
|
# PyPI doesn't ship all required files for the tests
|
|
"jupyterlab_git/tests/test_config.py"
|
|
"jupyterlab_git/tests/test_integrations.py"
|
|
"jupyterlab_git/tests/test_remote.py"
|
|
"jupyterlab_git/tests/test_settings.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_Git_get_nbdiff_file"
|
|
"test_Git_get_nbdiff_dict"
|
|
];
|
|
|
|
pythonImportsCheck = [ "jupyterlab_git" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
description = "Jupyter lab extension for version control with Git";
|
|
homepage = "https://github.com/jupyterlab/jupyterlab-git";
|
|
changelog = "https://github.com/jupyterlab/jupyterlab-git/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ chiroptical ];
|
|
};
|
|
}
|