Unverified Commit 241245c7 authored by Ilan Joselevich's avatar Ilan Joselevich
Browse files

python3Packages.aiohttp-sse-client: init at 0.2.1

parent 1d0a5c25
Loading
Loading
Loading
Loading
+50 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  wheel,
  aiohttp,
  attrs,
  multidict,
  yarl,
}:

buildPythonPackage rec {
  pname = "aiohttp-sse-client";
  version = "0.2.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-UATiknFiSvWGFY3HFmywaHp6WZeqtbgI9LU0AOG3Ljs=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "pytest-runner" ""
  '';

  build-system = [
    setuptools
    wheel
  ];

  dependencies = [
    aiohttp
    attrs
    multidict
    yarl
  ];

  pythonImportsCheck = [
    "aiohttp_sse_client"
  ];

  meta = {
    description = "A Server-Sent Event python client base on aiohttp";
    homepage = "https://pypi.org/project/aiohttp-sse-client/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ kranzes ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -317,6 +317,8 @@ self: super: with self; {
  aiohttp-sse = callPackage ../development/python-modules/aiohttp-sse { };
  aiohttp-sse-client = callPackage ../development/python-modules/aiohttp-sse-client { };
  aiohttp-sse-client2 = callPackage ../development/python-modules/aiohttp-sse-client2 { };
  aiohttp-swagger = callPackage ../development/python-modules/aiohttp-swagger { };