Skip to content

Commit

Permalink
python.pkgs.gitdb2: remove
Browse files Browse the repository at this point in the history
The two are now the same:
gitpython-developers/gitdb#59
  • Loading branch information
timokau committed Mar 14, 2020
1 parent ec455a8 commit 0fae68c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/GitPython/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb2, mock, nose, ddt }:
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:

buildPythonPackage rec {
version = "3.0.5";
Expand All @@ -18,7 +18,7 @@ buildPythonPackage rec {
];

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

# Tests require a git repo
doCheck = false;
Expand Down
23 changes: 0 additions & 23 deletions pkgs/development/python-modules/gitdb2/default.nix

This file was deleted.

2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2768,7 +2768,7 @@ in {

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

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

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

Expand Down

0 comments on commit 0fae68c

Please sign in to comment.