Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / gitdb / default.nix
blob5c3bd4ac43fc5edc57dffebf62ac45dd9382fc8c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , smmap
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "gitdb";
10   version = "4.0.5";
11   disabled = !isPy3k;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "c9e1f2d0db7ddb9a704c2a0217be31214e91a4fe1dea1efad19ae42ba0c285c9";
16   };
18   propagatedBuildInputs = [ smmap ];
20   # Bunch of tests fail because they need an actual git repo
21   doCheck = false;
23   meta = {
24     description = "Git Object Database";
25     maintainers = [ ];
26     homepage = "https://github.com/gitpython-developers/gitdb";
27     license = lib.licenses.bsd3;
28   };