From 357ed68213b459856795e8852821abc6ede6aee5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 26 May 2022 01:09:32 +0200 Subject: [PATCH] python310Packages.pygit2: add missing input --- pkgs/development/python-modules/pygit2/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pygit2/default.nix b/pkgs/development/python-modules/pygit2/default.nix index c2f96066c079..71589deae6f6 100644 --- a/pkgs/development/python-modules/pygit2/default.nix +++ b/pkgs/development/python-modules/pygit2/default.nix @@ -7,6 +7,7 @@ , fetchPypi , isPyPy , libgit2 +, pycparser , pytestCheckHook , pythonOlder }: @@ -33,6 +34,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ cached-property + pycparser ] ++ lib.optional (!isPyPy) [ cffi ];