python310Packages.pygit2: pin libgit2 to libgit2, run tests again

This commit is contained in:
Sandro Jäckel
2023-07-17 16:10:50 +02:00
parent 078ebb0fe8
commit de3e686cc8
@@ -4,6 +4,7 @@
, cacert
, cached-property
, cffi
, fetchFromGitHub
, fetchPypi
, isPyPy
, libgit2
@@ -12,6 +13,19 @@
, pythonOlder
}:
let
libgit2' = libgit2.overrideAttrs (_: rec {
version = "1.6.4";
src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
hash = "sha256-lW3mokVKsbknVj2xsxEbeZH4IdKZ0aIgGutzenS0Eh0=";
};
});
in
buildPythonPackage rec {
pname = "pygit2";
version = "1.12.2";
@@ -29,7 +43,7 @@ buildPythonPackage rec {
'';
buildInputs = [
libgit2
libgit2'
];
propagatedBuildInputs = [
@@ -58,14 +72,6 @@ buildPythonPackage rec {
# 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;
pythonImportsCheck = [
"pygit2"
];