Loading pkgs/development/python-modules/python-engineio-v3/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { aiohttp, buildPythonPackage, fetchPypi, lib, requests, setuptools, six, websocket-client, }: buildPythonPackage rec { pname = "python-engineio-v3"; version = "3.14.2"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-tYri/+OKIJAWWzeijFwgY9PK66lH584dvZnoBWyzaFw="; }; build-system = [ setuptools ]; dependencies = [ six ]; optional-dependencies = { client = [ requests websocket-client ]; asyncio_client = [ aiohttp ]; }; pythonImportsCheck = [ "engineio_v3" ]; # no tests on PyPI doCheck = false; meta = { description = "Engine.IO server"; homepage = "https://github.com/bdraco/python-engineio-v3"; license = lib.licenses.mit; longDescription = "This is a release of 3.14.2 under the “engineio_v3” namespace for old systems."; maintainers = with lib.maintainers; [ dotlambda ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12890,6 +12890,8 @@ self: super: with self; { python-engineio = callPackage ../development/python-modules/python-engineio { }; python-engineio-v3 = callPackage ../development/python-modules/python-engineio-v3 { }; python-etcd = callPackage ../development/python-modules/python-etcd { }; python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { }; Loading Loading
pkgs/development/python-modules/python-engineio-v3/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { aiohttp, buildPythonPackage, fetchPypi, lib, requests, setuptools, six, websocket-client, }: buildPythonPackage rec { pname = "python-engineio-v3"; version = "3.14.2"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-tYri/+OKIJAWWzeijFwgY9PK66lH584dvZnoBWyzaFw="; }; build-system = [ setuptools ]; dependencies = [ six ]; optional-dependencies = { client = [ requests websocket-client ]; asyncio_client = [ aiohttp ]; }; pythonImportsCheck = [ "engineio_v3" ]; # no tests on PyPI doCheck = false; meta = { description = "Engine.IO server"; homepage = "https://github.com/bdraco/python-engineio-v3"; license = lib.licenses.mit; longDescription = "This is a release of 3.14.2 under the “engineio_v3” namespace for old systems."; maintainers = with lib.maintainers; [ dotlambda ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12890,6 +12890,8 @@ self: super: with self; { python-engineio = callPackage ../development/python-modules/python-engineio { }; python-engineio-v3 = callPackage ../development/python-modules/python-engineio-v3 { }; python-etcd = callPackage ../development/python-modules/python-etcd { }; python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { }; Loading