diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2023-12-03 00:02:30 +0100 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2023-12-20 20:45:10 +0100 |
| commit | d4c4fe52151a238ab7a01b989b3e1cdd3cb575d0 (patch) | |
| tree | 801799bf3e4e6cda7a13e9d1887e4a936f8029fe /pkgs/development/python-modules/python-engineio | |
| parent | 82f207a0a734634d278ae8c415cf2ae4ed5cedc6 (diff) | |
python3Packages.python-engineio: 4.7.1 -> 4.8.0
https://github.com/miguelgrinberg/python-engineio/blob/v4.8.0/CHANGES.md
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
| -rw-r--r-- | pkgs/development/python-modules/python-engineio/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index 990cbd1be317..59cd210a0a04 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -2,6 +2,7 @@ , stdenv , aiohttp , buildPythonPackage +, setuptools , eventlet , fetchFromGitHub , iana-etc @@ -17,8 +18,8 @@ buildPythonPackage rec { pname = "python-engineio"; - version = "4.7.1"; - format = "setuptools"; + version = "4.8.0"; + pyproject = true; disabled = pythonOlder "3.6"; @@ -26,9 +27,13 @@ buildPythonPackage rec { owner = "miguelgrinberg"; repo = "python-engineio"; rev = "refs/tags/v${version}"; - hash = "sha256-jHXpPnrQlIpmQ2sY4y6AUx/6W8Pf+683s4NmmlwZO58="; + hash = "sha256-btXwx9GRLBcjtcGdgckb2Y/MxC0E/rKTWKgkP8olezo="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ simple-websocket ]; |
