aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix b/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
new file mode 100644
index 00000000000..91ae426147c
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/jupyterlab-git/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
+, notebook
+, nbdime
+, git
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "jupyterlab_git";
+ version = "0.20.0";
+ disabled = pythonOlder "3.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0qs3wrcils07xlz698xr7giqf9v63n2qb338mlh7wql93rmjg45i";
+ };
+
+ propagatedBuildInputs = [ notebook nbdime git ];
+
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ pytest jupyterlab_git/ --ignore=jupyterlab_git/tests/test_handlers.py
+ '';
+
+ pythonImportsCheck = [ "jupyterlab_git" ];
+
+ meta = with lib; {
+ description = "Jupyter lab extension for version control with Git.";
+ license = with licenses; [ bsd3 ];
+ homepage = "https://github.com/jupyterlab/jupyterlab-git";
+ maintainers = with maintainers; [ chiroptical ];
+ };
+}