Files
nixpkgs/pkgs/development/python-modules/uvloop/default.nix
T

77 lines
1.4 KiB
Nix
Raw Normal View History

2019-05-07 08:53:23 -04:00
{ lib
, stdenv
2019-05-07 08:53:23 -04:00
, buildPythonPackage
2021-02-10 15:41:17 +01:00
, pythonOlder
2019-05-07 08:53:23 -04:00
, fetchPypi
, libuv
, CoreServices
, ApplicationServices
2020-04-03 16:22:04 -04:00
# Check Inputs
2021-02-10 15:41:17 +01:00
, aiohttp
, psutil
, pyopenssl
2020-04-03 16:22:04 -04:00
, pytestCheckHook
2019-05-07 08:53:23 -04:00
}:
buildPythonPackage rec {
pname = "uvloop";
2021-02-15 18:57:48 +01:00
version = "0.15.1";
2021-02-10 15:41:17 +01:00
disabled = pythonOlder "3.7";
2019-05-07 08:53:23 -04:00
src = fetchPypi {
inherit pname version;
2021-02-15 18:57:48 +01:00
sha256 = "1p33xfzcy60qqca3rplzbh8h4x7x9l77vi6zbyy9md5z2a0q4ikq";
2019-05-07 08:53:23 -04:00
};
buildInputs = [
libuv
2021-02-10 15:41:17 +01:00
] ++ lib.optionals stdenv.isDarwin [
CoreServices
ApplicationServices
2020-04-03 16:22:04 -04:00
];
2019-05-07 08:53:23 -04:00
2020-04-03 16:22:04 -04:00
dontUseSetuptoolsCheck = true;
2021-02-10 15:41:17 +01:00
checkInputs = [
aiohttp
pytestCheckHook
pyopenssl
psutil
];
2020-04-03 16:22:04 -04:00
pytestFlagsArray = [
# from pytest.ini, these are NECESSARY to prevent failures
"--capture=no"
"--assert=plain"
2021-02-10 15:41:17 +01:00
"--strict"
2020-04-03 16:22:04 -04:00
"--tb=native"
# ignore code linting tests
"--ignore=tests/test_sourcecode.py"
];
# force using installed/compiled uvloop vs source by moving tests to temp dir
preCheck = ''
export TEST_DIR=$(mktemp -d)
cp -r tests $TEST_DIR
pushd $TEST_DIR
'';
2021-02-10 15:41:17 +01:00
2020-04-03 16:22:04 -04:00
postCheck = ''
popd
'';
2019-05-07 08:53:23 -04:00
2021-02-10 15:41:17 +01:00
pythonImportsCheck = [
"uvloop"
"uvloop.loop"
];
2019-09-13 23:11:56 +02:00
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2019-05-07 08:53:23 -04:00
meta = with lib; {
description = "Fast implementation of asyncio event loop on top of libuv";
2020-04-03 16:22:04 -04:00
homepage = "https://github.com/MagicStack/uvloop";
2019-05-07 08:53:23 -04:00
license = licenses.mit;
2020-04-03 16:22:04 -04:00
maintainers = with maintainers; [ costrouc ];
2019-05-07 08:53:23 -04:00
};
}