Unverified Commit dfa5433a authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python314Packages.axis: 66 -> 67 (#501811)

parents be638f4c b8013809
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
{
  lib,
  async-timeout,
  attrs,
  aiohttp,
  buildPythonPackage,
  faust-cchardet,
  fetchFromGitHub,
@@ -16,29 +15,28 @@

buildPythonPackage rec {
  pname = "axis";
  version = "66";
  version = "67";
  pyproject = true;

  disabled = pythonOlder "3.12";
  disabled = pythonOlder "3.14";

  src = fetchFromGitHub {
    owner = "Kane610";
    repo = "axis";
    tag = "v${version}";
    hash = "sha256-h3ySZeGlWeWIywtZoK8LcnxaqRe6lvJ7VTds1J+Jc3M=";
    hash = "sha256-Zfhz3AtiMSF5yNF+Z7++3O1oof5hyfues3u4bToFBYk=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools==80.9.0" "setuptools" \
      --replace-fail "wheel==0.46.1" "wheel"
      --replace-fail "setuptools==82.0.1" "setuptools" \
      --replace-fail "wheel==0.46.3" "wheel"
  '';

  build-system = [ setuptools ];

  dependencies = [
    async-timeout
    attrs
    aiohttp
    faust-cchardet
    httpx
    orjson