2018-05-09 00:19:48 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
|
|
|
, attrs
|
|
|
|
, sortedcontainers
|
|
|
|
, async_generator
|
|
|
|
, idna
|
|
|
|
, outcome
|
|
|
|
, contextvars
|
|
|
|
, pytest
|
|
|
|
, pyopenssl
|
|
|
|
, trustme
|
2018-09-08 01:02:55 +02:00
|
|
|
, sniffio
|
2019-07-16 23:39:54 +02:00
|
|
|
, stdenv
|
2018-10-25 20:24:56 +02:00
|
|
|
, jedi
|
|
|
|
, pylint
|
2019-10-17 11:45:45 +02:00
|
|
|
, astor
|
2019-10-25 06:38:10 +02:00
|
|
|
, yapf
|
2018-05-09 00:19:48 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "trio";
|
2019-12-19 20:31:24 +01:00
|
|
|
version = "0.13.0";
|
2018-05-09 00:19:48 +02:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 20:31:24 +01:00
|
|
|
sha256 = "f1cf00054ad974c86d9b7afa187a65d79fd5995340abe01e8e4784d86f4acb30";
|
2018-05-09 00:19:48 +02:00
|
|
|
};
|
|
|
|
|
2019-10-25 06:38:10 +02:00
|
|
|
checkInputs = [ astor pytest pyopenssl trustme jedi pylint yapf ];
|
2018-05-09 00:19:48 +02:00
|
|
|
# It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
|
|
|
|
checkPhase = ''
|
2019-10-25 09:18:22 +02:00
|
|
|
HOME=$TMPDIR py.test -k 'not getnameinfo \
|
|
|
|
and not SocketType_resolve \
|
|
|
|
and not getprotobyname \
|
|
|
|
and not waitpid \
|
|
|
|
and not static_tool_sees_all_symbols'
|
2018-05-09 00:19:48 +02:00
|
|
|
'';
|
2019-10-25 09:18:22 +02:00
|
|
|
|
2018-05-09 00:19:48 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
attrs
|
|
|
|
sortedcontainers
|
|
|
|
async_generator
|
|
|
|
idna
|
|
|
|
outcome
|
2018-09-08 01:02:55 +02:00
|
|
|
sniffio
|
2018-05-09 00:19:48 +02:00
|
|
|
] ++ lib.optionals (pythonOlder "3.7") [ contextvars ];
|
|
|
|
|
2019-07-16 23:39:54 +02:00
|
|
|
# tests are failing on Darwin
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-05-09 00:19:48 +02:00
|
|
|
meta = {
|
|
|
|
description = "An async/await-native I/O library for humans and snake people";
|
|
|
|
homepage = https://github.com/python-trio/trio;
|
|
|
|
license = with lib.licenses; [ mit asl20 ];
|
|
|
|
maintainers = with lib.maintainers; [ catern ];
|
|
|
|
};
|
|
|
|
}
|