about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-06-02 09:28:58 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-06-02 09:42:48 +0200
commitbe7d2eba4eb5695bc44c8346f26f660675e7dc63 (patch)
tree2f54c376959f1daa1dd870fb7f7be33e6323c806 /pkgs/development
parent1ea21327be177b4c9d9b2cec97cbb4742ee61bf0 (diff)
python312Packages.githubkit: 0.11.4 -> 0.11.5
Diff: https://github.com/yanyongyu/githubkit/compare/refs/tags/v0.11.4...v0.11.5

Changelog: https://github.com/yanyongyu/githubkit/releases/tag/v0.11.5
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/githubkit/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/githubkit/default.nix b/pkgs/development/python-modules/githubkit/default.nix
index 3a8f62f6a02d6..fe14c80356ae0 100644
--- a/pkgs/development/python-modules/githubkit/default.nix
+++ b/pkgs/development/python-modules/githubkit/default.nix
@@ -11,12 +11,13 @@
   pytest-xdist,
   pytestCheckHook,
   pythonOlder,
+  pythonRelaxDepsHook,
   typing-extensions,
 }:
 
 buildPythonPackage rec {
   pname = "githubkit";
-  version = "0.11.4";
+  version = "0.11.5";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -25,7 +26,7 @@ buildPythonPackage rec {
     owner = "yanyongyu";
     repo = "githubkit";
     rev = "refs/tags/v${version}";
-    hash = "sha256-uxXRDavp5c3e1MOZR2B4wUxEHh6K81avTeaIVsOdup8=";
+    hash = "sha256-YlI5NEfZD+9I2Ikd/LyEq+MnsdYixi+UVNUP8mfFKc8=";
   };
 
   postPatch = ''
@@ -33,8 +34,12 @@ buildPythonPackage rec {
       --replace-fail "--cov=githubkit --cov-append --cov-report=term-missing" ""
   '';
 
+  pythonRelaxDeps = [ "hishel" ];
+
   build-system = [ poetry-core ];
 
+  nativeBuildInputs = [ pythonRelaxDepsHook ];
+
   dependencies = [
     hishel
     httpx