2020-02-05 23:11:28 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, isPy3k, libgit2, pytestCheckHook, cffi, cacert }:
|
2017-11-02 08:35:40 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pygit2";
|
2020-02-05 23:11:28 +00:00
|
|
|
version = "1.0.3";
|
2017-11-02 08:35:40 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-05 23:11:28 +00:00
|
|
|
sha256 = "1ql7hkcxrh8yszglrg7d3y0ivh1l56xdc3j34j2fjy4qq06ifv6y";
|
2017-11-02 08:35:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
2019-06-17 08:47:10 +01:00
|
|
|
export DYLD_LIBRARY_PATH="${libgit2}/lib"
|
2017-11-02 08:35:40 +00:00
|
|
|
'';
|
|
|
|
|
2020-02-05 23:11:28 +00:00
|
|
|
propagatedBuildInputs = [ libgit2 ] ++ lib.optional (!isPyPy) cffi;
|
2018-10-30 22:28:07 +00:00
|
|
|
|
2020-02-05 23:11:28 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2017-11-02 08:35:40 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# disable tests that require networking
|
|
|
|
rm test/test_repository.py
|
|
|
|
rm test/test_credentials.py
|
|
|
|
rm test/test_submodule.py
|
|
|
|
'';
|
|
|
|
|
2020-02-05 23:11:28 +00:00
|
|
|
# Tests require certificates
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/72544#issuecomment-582674047
|
|
|
|
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
|
|
|
|
# setup.py check is broken
|
|
|
|
# https://github.com/libgit2/pygit2/issues/868
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
|
|
|
|
# TODO: Test collection is failing
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/72544#issuecomment-582681068
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2017-11-02 08:35:40 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A set of Python bindings to the libgit2 shared library";
|
|
|
|
homepage = https://pypi.python.org/pypi/pygit2;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|