summary refs log tree commit diff
path: root/pkgs/development/python-modules/gitdb/default.nix
blob: ceca6e3719b4d87cab674cc33f95932915ecde0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, smmap }:

buildPythonPackage rec {
  pname = "gitdb";
  version = "0.6.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3";
  };

  propagatedBuildInputs = [ smmap ];

  # Bunch of tests fail because they need an actual git repo
  doCheck = false;

  meta = {
    description = "Git Object Database";
    maintainers = [ ];
    homepage = https://github.com/gitpython-developers/gitdb;
    license = lib.licenses.bsd3;
  };
}