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