nixpkgs/pkgs/development/python-modules/pygit2/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

66 lines
1.4 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
cacert,
cached-property,
cffi,
fetchPypi,
isPyPy,
libgit2,
pycparser,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pygit2";
version = "1.14.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-7FlYVxuCpjUXhcpkXlOUwxrkXuxThLL6nE4F3eNZetY=";
};
preConfigure = lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH="${libgit2}/lib"
'';
nativeBuildInputs = [ setuptools ];
buildInputs = [ libgit2 ];
propagatedBuildInputs = [
cached-property
pycparser
] ++ lib.optionals (!isPyPy) [ cffi ];
propagatedNativeBuildInputs = lib.optionals (!isPyPy) [ cffi ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# Disable tests that require networking
"test/test_repository.py"
"test/test_credentials.py"
"test/test_submodule.py"
];
# Tests require certificates
# https://github.com/NixOS/nixpkgs/pull/72544#issuecomment-582674047
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
pythonImportsCheck = [ "pygit2" ];
meta = with lib; {
description = "Set of Python bindings to the libgit2 shared library";
homepage = "https://github.com/libgit2/pygit2";
changelog = "https://github.com/libgit2/pygit2/blob/v${version}/CHANGELOG.md";
license = licenses.gpl2Only;
maintainers = with maintainers; [ ];
};
}