1{ lib, buildPythonPackage, fetchPypi, smmap2 }:
2
3buildPythonPackage rec {
4 pname = "gitdb2";
5 version = "2.0.6";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1b6df1433567a51a4a9c1a5a0de977aa351a405cc56d7d35f3388bad1f630350";
10 };
11
12 propagatedBuildInputs = [ smmap2 ];
13
14 # Bunch of tests fail because they need an actual git repo
15 doCheck = false;
16
17 meta = {
18 description = "Git Object Database";
19 maintainers = [ ];
20 homepage = https://github.com/gitpython-developers/gitdb;
21 license = lib.licenses.bsd3;
22 };
23}