python.pkgs.gitdb2: remove

The two are now the same:
https://github.com/gitpython-developers/gitdb/issues/59
This commit is contained in:
Timo Kaufmann
2020-03-14 17:00:41 +01:00
committed by Jon
parent e789990fb6
commit 6db65f8d02
3 changed files with 3 additions and 26 deletions

View File

@@ -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";
@@ -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;

View File

@@ -1,23 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, smmap2 }:
buildPythonPackage rec {
pname = "gitdb2";
version = "2.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "1b6df1433567a51a4a9c1a5a0de977aa351a405cc56d7d35f3388bad1f630350";
};
propagatedBuildInputs = [ smmap2 ];
# Bunch of tests fail because they need an actual git repo
doCheck = false;
meta = {
description = "Git Object Database";
maintainers = [ ];
homepage = https://github.com/gitpython-developers/gitdb;
license = lib.licenses.bsd3;
};
}