Unverified Commit 6665259b authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.githubkit: 0.13.5 -> 0.14.4 (#489063)

parents b92e5230 e450c7ce
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  anyio,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch2,
  hishel,
  httpx,
  pydantic,
@@ -17,24 +16,16 @@

buildPythonPackage rec {
  pname = "githubkit";
  version = "0.13.5";
  version = "0.14.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "yanyongyu";
    repo = "githubkit";
    tag = "v${version}";
    hash = "sha256-YKL31M1H4LBE29xmi6GfX3tTBGxS9yUvHQEiWke3ANA=";
    hash = "sha256-ia4ixtui7F8NauytXYi2aaiKXejIOHNijQrSm2RtzdU=";
  };

  patches = [
    (fetchpatch2 {
      name = "uv-build.patch";
      url = "https://github.com/yanyongyu/githubkit/commit/2817664d904541242d4cedf7aae85cd4c4b606e2.patch?full_index=1";
      hash = "sha256-mmtjlebHZpHX457frSOe88tsUo7iNdSIUynGZjcjuw4=";
    })
  ];

  pythonRelaxDeps = [ "hishel" ];

  build-system = [ uv-build ];