about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-05-26 12:05:06 +0200
committerGitHub <noreply@github.com>2022-05-26 12:05:06 +0200
commite1f7051794a71db9f3e03067cf345e68f01c48ba (patch)
tree2752f10eab2d58ad772ec0079eea2c7f0de38696
parentfe6535efc0a672c6445639c5c7bd072d51c739b7 (diff)
parent357ed68213b459856795e8852821abc6ede6aee5 (diff)
downloadnixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar.gz
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar.bz2
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar.lz
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar.xz
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.tar.zst
nixlib-e1f7051794a71db9f3e03067cf345e68f01c48ba.zip
Merge pull request #174525 from r-ryantm/auto-update/python3.10-pygit2
python310Packages.pygit2: 1.9.1 -> 1.9.2
-rw-r--r--pkgs/development/python-modules/pygit2/default.nix44
1 files changed, 35 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/pygit2/default.nix b/pkgs/development/python-modules/pygit2/default.nix
index 2d4deb16276b..71589deae6f6 100644
--- a/pkgs/development/python-modules/pygit2/default.nix
+++ b/pkgs/development/python-modules/pygit2/default.nix
@@ -1,12 +1,27 @@
-{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, isPy3k, libgit2, cached-property, pytestCheckHook, cffi, cacert }:
+{ lib
+, stdenv
+, buildPythonPackage
+, cacert
+, cached-property
+, cffi
+, fetchPypi
+, isPyPy
+, libgit2
+, pycparser
+, pytestCheckHook
+, pythonOlder
+}:
 
 buildPythonPackage rec {
   pname = "pygit2";
-  version = "1.9.1";
+  version = "1.9.2";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-72R5w7YZKCUxawVjNtt36/9ueEmusfu4i3YAGsM3uck=";
+    hash = "sha256-IIlEM98RRkgarK434rDzu7/eoCbbL1UGEXC9mCPkCxk=";
   };
 
   preConfigure = lib.optionalString stdenv.isDarwin ''
@@ -19,14 +34,21 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     cached-property
-  ] ++ lib.optional (!isPyPy) cffi;
+    pycparser
+  ] ++ lib.optional (!isPyPy) [
+    cffi
+  ];
 
-  propagatedNativeBuildInputs = lib.optional (!isPyPy) cffi;
+  propagatedNativeBuildInputs = lib.optional (!isPyPy) [
+    cffi
+  ];
 
-  checkInputs = [ pytestCheckHook ];
+  checkInputs = [
+    pytestCheckHook
+  ];
 
   disabledTestPaths = [
-    # disable tests that require networking
+    # Disable tests that require networking
     "test/test_repository.py"
     "test/test_credentials.py"
     "test/test_submodule.py"
@@ -44,10 +66,14 @@ buildPythonPackage rec {
   # https://github.com/NixOS/nixpkgs/pull/72544#issuecomment-582681068
   doCheck = false;
 
+  pythonImportsCheck = [
+    "pygit2"
+  ];
+
   meta = with lib; {
     description = "A set of Python bindings to the libgit2 shared library";
-    homepage = "https://pypi.python.org/pypi/pygit2";
-    license = licenses.gpl2;
+    homepage = "https://github.com/libgit2/pygit2";
+    license = licenses.gpl2Only;
     maintainers = with maintainers; [ ];
   };
 }