From d76caee9e9c7ad2eb88d924de95e85998da96395 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 22:51:03 +0000 Subject: [PATCH 1/2] python3Packages.python-engineio: 4.12.2 -> 4.12.3 --- pkgs/development/python-modules/python-engineio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index 3c4ca5cdd764..a252ceeb73c7 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "python-engineio"; - version = "4.12.2"; + version = "4.12.3"; pyproject = true; disabled = pythonOlder "3.8"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "miguelgrinberg"; repo = "python-engineio"; tag = "v${version}"; - hash = "sha256-VgdqVzO3UToXpD9pMEDqAH2DfdBwaWUfulALAEG2DNs="; + hash = "sha256-VcL8Od1EM/cbbeOVyXlsXYt8Bms636XbtunrTblkGDQ="; }; build-system = [ setuptools ]; From 4089148983517436e83d7935c2193236bdf37ac4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Oct 2025 11:27:59 +0200 Subject: [PATCH 2/2] python313Packages.python-engineio: modernize --- pkgs/development/python-modules/python-engineio/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index a252ceeb73c7..fb0b279437df 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -11,7 +11,6 @@ mock, pytest-asyncio, pytestCheckHook, - pythonOlder, requests, simple-websocket, tornado, @@ -23,8 +22,6 @@ buildPythonPackage rec { version = "4.12.3"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-engineio"; @@ -80,7 +77,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/miguelgrinberg/python-engineio/"; changelog = "https://github.com/miguelgrinberg/python-engineio/blob/${src.tag}/CHANGES.md"; - license = with licenses; [ mit ]; + license = licenses.mit; maintainers = with maintainers; [ mic92 ]; }; }