aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/trio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/trio/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/trio/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/trio/default.nix b/nixpkgs/pkgs/development/python-modules/trio/default.nix
index 135142529a9..658dea91049 100644
--- a/nixpkgs/pkgs/development/python-modules/trio/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/trio/default.nix
@@ -5,7 +5,7 @@
, idna
, outcome
, contextvars
-, pytest
+, pytestCheckHook
, pyopenssl
, trustme
, sniffio
@@ -18,23 +18,23 @@
buildPythonPackage rec {
pname = "trio";
- version = "0.13.0";
+ version = "0.16.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "f1cf00054ad974c86d9b7afa187a65d79fd5995340abe01e8e4784d86f4acb30";
+ sha256 = "df067dd0560c321af39d412cd81fc3a7d13f55af9150527daab980683e9fcf3c";
};
- checkInputs = [ astor pytest pyopenssl trustme jedi pylint yapf ];
+ checkInputs = [ astor pytestCheckHook pyopenssl trustme jedi pylint yapf ];
# It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
- checkPhase = ''
- HOME=$TMPDIR py.test -k 'not getnameinfo \
- and not SocketType_resolve \
- and not getprotobyname \
- and not waitpid \
- and not static_tool_sees_all_symbols'
- '';
+ disabledTests = [
+ "getnameinfo"
+ "SocketType_resolve"
+ "getprotobyname"
+ "waitpid"
+ "static_tool_sees_all_symbols"
+ ];
propagatedBuildInputs = [
attrs