python310Packages.pygit2: 1.11.1 -> 1.12.0

This commit is contained in:
Sandro Jäckel
2023-04-22 21:25:48 +02:00
parent 0131a9a6b0
commit d5295e6c9d
@@ -6,7 +6,7 @@
, cffi
, fetchPypi
, isPyPy
, libgit2_1_5
, libgit2
, pycparser
, pytestCheckHook
, pythonOlder
@@ -14,22 +14,22 @@
buildPythonPackage rec {
pname = "pygit2";
version = "1.11.1";
version = "1.12.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-eT9YP9M2IPCsODdtsPV3aO8pIribRZ51saxEA3frZOw=";
hash = "sha256-6UQNCGZeNSeJiZOVkKU/N6k46tpPlEaESTCqLuMNc74=";
};
preConfigure = lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH="${libgit2_1_5}/lib"
export DYLD_LIBRARY_PATH="${libgit2}/lib"
'';
buildInputs = [
libgit2_1_5
libgit2
];
propagatedBuildInputs = [