1{ lib, buildPythonPackage, fetchPypi, smmap2 }:
2
3buildPythonPackage rec {
4 pname = "gitdb2";
5 version = "2.0.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "83361131a1836661a155172932a13c08bda2db3674e4caa32368aa6eb02f38c2";
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}