mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 16:36:38 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
cacert,
|
|
cached-property,
|
|
cffi,
|
|
fetchPypi,
|
|
isPyPy,
|
|
libgit2,
|
|
pycparser,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygit2";
|
|
version = "1.19.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-yl2285WnQWagGdd3iV+WvLIR7mDOC+QTKxOWA+AGbYM=";
|
|
};
|
|
|
|
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
export DYLD_LIBRARY_PATH="${libgit2}/lib"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [ libgit2 ];
|
|
|
|
dependencies = [
|
|
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 = {
|
|
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 = lib.licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|