1{ lib, buildPythonPackage, fetchPypi, smmap }:
2
3buildPythonPackage rec {
4 pname = "gitdb";
5 version = "0.6.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3";
10 };
11
12 propagatedBuildInputs = [ smmap ];
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}