Skip to content

Commit 0fae68c

Browse files
committed
python.pkgs.gitdb2: remove
The two are now the same: gitpython-developers/gitdb#59
1 parent ec455a8 commit 0fae68c

File tree

3 files changed

+3
-26
lines changed

3 files changed

+3
-26
lines changed

pkgs/development/python-modules/GitPython/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb2, mock, nose, ddt }:
1+
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
22

33
buildPythonPackage rec {
44
version = "3.0.5";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
1818
];
1919

2020
checkInputs = [ nose ] ++ lib.optional isPy27 mock;
21-
propagatedBuildInputs = [ gitdb2 ddt ];
21+
propagatedBuildInputs = [ gitdb ddt ];
2222

2323
# Tests require a git repo
2424
doCheck = false;

pkgs/development/python-modules/gitdb2/default.nix

Lines changed: 0 additions & 23 deletions
This file was deleted.

pkgs/top-level/python-packages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2768,7 +2768,7 @@ in {
27682768

27692769
gitdb = callPackage ../development/python-modules/gitdb { };
27702770

2771-
gitdb2 = callPackage ../development/python-modules/gitdb2 { };
2771+
gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
27722772

27732773
GitPython = callPackage ../development/python-modules/GitPython { };
27742774

0 commit comments

Comments
 (0)