Loading pkgs/development/python-modules/aiohttp-sse-client/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/aiohttp-sse-client/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading