python312Packages.trio: 0.26.2 -> 0.27.0

https://github.com/python-trio/trio/blob/v0.27.0/docs/source/history.rst
This commit is contained in:
Martin Weinelt
2024-12-04 16:35:47 +01:00
parent afbe774741
commit 57824b047b
2 changed files with 8 additions and 6 deletions
@@ -18,7 +18,6 @@
# tests
astor,
coreutils,
jedi,
pyopenssl,
pytestCheckHook,
@@ -36,7 +35,7 @@ let
in
buildPythonPackage rec {
pname = "trio";
version = "0.26.2";
version = "0.27.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -45,7 +44,7 @@ buildPythonPackage rec {
owner = "python-trio";
repo = "trio";
rev = "refs/tags/v${version}";
hash = "sha256-Vlm6lEMKKfwmhbeefPjxm3vz1zFRUEGOCHXLcZKQcIo=";
hash = "sha256-VJVGMhoLISCtNh56E7ssKXBPh4/WvUbFyKUbnWvqd0s=";
};
build-system = [ setuptools ];
@@ -77,6 +76,11 @@ buildPythonPackage rec {
PYTHONPATH=$PWD/src:$PYTHONPATH
'';
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
# It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
disabledTests = [
"getnameinfo"
+1 -3
View File
@@ -16264,9 +16264,7 @@ self: super: with self; {
trino-python-client = callPackage ../development/python-modules/trino-python-client { };
trio = callPackage ../development/python-modules/trio {
inherit (pkgs) coreutils;
};
trio = callPackage ../development/python-modules/trio { };
trio-asyncio = callPackage ../development/python-modules/trio-asyncio { };