python310Packages.nbdime: rename GitPython

This commit is contained in:
Fabian Affolter 2022-12-05 20:25:27 +01:00
parent 66a25fc684
commit be06709e65

View File

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pythonOlder
, hypothesis
, setuptools-scm
, six
@ -19,7 +19,7 @@
, pygments
, tornado
, requests
, GitPython
, gitpython
, jupyter-server-mathjax
, notebook
, jinja2
@ -28,14 +28,18 @@
buildPythonPackage rec {
pname = "nbdime";
version = "3.1.1";
disabled = !isPy3k;
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "67767320e971374f701a175aa59abd3a554723039d39fae908e72d16330d648b";
hash = "sha256-Z3ZzIOlxN09wGhdapZq9OlVHIwOdOfrpCOctFjMNZIs=";
};
nativeBuildInputs = [ setuptools-scm ];
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
attrs
@ -48,7 +52,7 @@ buildPythonPackage rec {
pygments
tornado
requests
GitPython
gitpython
notebook
jinja2
];
@ -78,6 +82,10 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [
"nbdime"
];
meta = with lib; {
homepage = "https://github.com/jupyter/nbdime";
description = "Tools for diffing and merging of Jupyter notebooks.";