mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
03ed466442
https://github.com/python-trio/trio/releases/tag/v0.23.0 https://github.com/python-trio/trio/releases/tag/v0.23.1
113 lines
2.0 KiB
Nix
113 lines
2.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, stdenv
|
|
|
|
# build-system
|
|
, setuptools
|
|
|
|
# dependencies
|
|
, attrs
|
|
, exceptiongroup
|
|
, idna
|
|
, outcome
|
|
, sniffio
|
|
, sortedcontainers
|
|
|
|
# tests
|
|
, astor
|
|
, coreutils
|
|
, jedi
|
|
, pyopenssl
|
|
, pytestCheckHook
|
|
, pytest-trio
|
|
, trustme
|
|
, yapf
|
|
}:
|
|
|
|
let
|
|
# escape infinite recursion with pytest-trio
|
|
pytest-trio' = (pytest-trio.override {
|
|
trio = null;
|
|
}).overrideAttrs {
|
|
doCheck = false;
|
|
pythonImportsCheck = [];
|
|
};
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "trio";
|
|
version = "0.23.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-FviffcyPe53N7B/Nhj4MA5r20PmiL439Vvdddexz/Ug=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
idna
|
|
outcome
|
|
sniffio
|
|
sortedcontainers
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
exceptiongroup
|
|
];
|
|
|
|
# tests are failing on Darwin
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
nativeCheckInputs = [
|
|
astor
|
|
jedi
|
|
pyopenssl
|
|
pytestCheckHook
|
|
pytest-trio'
|
|
trustme
|
|
yapf
|
|
];
|
|
|
|
preCheck = ''
|
|
substituteInPlace trio/_tests/test_subprocess.py \
|
|
--replace "/bin/sleep" "${coreutils}/bin/sleep"
|
|
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
# It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
|
|
disabledTests = [
|
|
"getnameinfo"
|
|
"SocketType_resolve"
|
|
"getprotobyname"
|
|
"waitpid"
|
|
"static_tool_sees_all_symbols"
|
|
# tests pytest more than python
|
|
"fallback_when_no_hook_claims_it"
|
|
# requires mypy
|
|
"test_static_tool_sees_class_members"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# linters
|
|
"trio/_tests/tools/test_gen_exports.py"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-W" "ignore::DeprecationWarning"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|