summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-27 09:45:21 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2023-01-08 06:43:38 +0100
commit9e21dd2c17c6757d1cd00b331e74f73351a3891b (patch)
treed7181f885083cc2c1f21d02f001c7cf3662c4f17
parent57e0f85edcb588b831aab7554833ce6ee67f2240 (diff)
python310Packages.sanic: 22.6.2 -> 22.9.1
Changelog: https://github.com/sanic-org/sanic/releases/tag/v22.9.1 (cherry picked from commit ecc39e9153b8f6c6cd29895d52fb3cfb77f0e05a)
-rw-r--r--pkgs/development/python-modules/sanic/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix
index 5c9e9fd86644..3302fa028ea9 100644
--- a/pkgs/development/python-modules/sanic/default.nix
+++ b/pkgs/development/python-modules/sanic/default.nix
@@ -25,7 +25,7 @@
buildPythonPackage rec {
pname = "sanic";
- version = "22.6.2";
+ version = "22.9.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -34,7 +34,7 @@ buildPythonPackage rec {
owner = "sanic-org";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-krEQd0ak9Uua+r+pYmLStlizgE4HmZBO8Q0I2/gWAwU=";
+ hash = "sha256-KbcHnAdr59hk7W36BiTb/hD74ktj/DGzq1vcuZ/lGfQ=";
};
propagatedBuildInputs = [
@@ -104,6 +104,13 @@ buildPythonPackage rec {
"test_keep_alive_client_timeout"
"test_keep_alive_server_timeout"
"test_zero_downtime"
+ # TLS tests
+ "test_missing_sni"
+ "test_no_matching_cert"
+ "test_wildcards"
+ # They thtow execptions
+ "test_load_app_simple"
+ "worker/test_loader.py"
# broke with ujson 5.4 upgrade
# https://github.com/sanic-org/sanic/pull/2504
"test_json_response_json"