summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-28 23:48:05 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-03-28 23:48:15 +0200
commit14e2d57dbe15070a9357ba3f4849edc4fc7810dc (patch)
treefcc6951739cd368fe20e31297c680a664b3dc495 /pkgs/development/python-modules/python-engineio
parent92f28daedeab851b5538e50e8efc352ba524b0a8 (diff)
python310Packages.python-engineio: 4.3.4 -> 4.4.0
Diff: https://github.com/miguelgrinberg/python-engineio/compare/refs/tags/v4.3.4...v4.4.0 Changelog: https://github.com/miguelgrinberg/python-engineio/blob/v4.4.0/CHANGES.md
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
-rw-r--r--pkgs/development/python-modules/python-engineio/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix
index f1a079d5896e..d08e62a81555 100644
--- a/pkgs/development/python-modules/python-engineio/default.nix
+++ b/pkgs/development/python-modules/python-engineio/default.nix
@@ -4,7 +4,6 @@
, buildPythonPackage
, eventlet
, fetchFromGitHub
-, fetchpatch
, iana-etc
, libredirect
, mock
@@ -17,7 +16,7 @@
buildPythonPackage rec {
pname = "python-engineio";
- version = "4.3.4";
+ version = "4.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -26,18 +25,9 @@ buildPythonPackage rec {
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "refs/tags/v${version}";
- hash = "sha256-fymO9WqkYaRsHKCJHQJpySHqZor2t8BfVrfYUfYoJno=";
+ hash = "sha256-pixLk9Q7mIw1ReFemDu039lJtCwqi73tvhXl0KhKvgw=";
};
- patches = [
- # Address Python 3.11 mocking issue, https://github.com/miguelgrinberg/python-engineio/issues/279
- (fetchpatch {
- name = "mocking-issue-py311.patch";
- url = "https://github.com/miguelgrinberg/python-engineio/commit/ac3911356fbe933afa7c11d56141f0e228c01528.patch";
- hash = "sha256-LNMhjX8kqOI3y8XugCHxCPEC6lF83NROfIczXWiLuqY=";
- })
- ];
-
nativeCheckInputs = [
aiohttp
eventlet