mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
86 lines
1.7 KiB
Nix
86 lines
1.7 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, isPy3k
|
|
, decorator
|
|
, http-parser
|
|
, python-magic
|
|
, urllib3
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, aiohttp
|
|
, fastapi
|
|
, gevent
|
|
, httpx
|
|
, redis
|
|
, requests
|
|
, sure
|
|
, pook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mocket";
|
|
version = "3.10.9";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-fAVw5WvpJOITQWqA8Y6Xi7QbaunZ1WGXxAuUMXbh+Aw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
decorator
|
|
http-parser
|
|
python-magic
|
|
urllib3
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
aiohttp
|
|
fastapi
|
|
gevent
|
|
httpx
|
|
redis
|
|
requests
|
|
sure
|
|
pook
|
|
];
|
|
|
|
# skip http tests
|
|
SKIP_TRUE_HTTP = true;
|
|
pytestFlagsArray = [
|
|
# Requires a live Redis instance
|
|
"--ignore=tests/main/test_redis.py"
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
# Uses IsolatedAsyncioTestCase which is only available >= 3.8
|
|
"--ignore=tests/tests38/test_http_aiohttp.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# tests that require network access (like DNS lookups)
|
|
"test_truesendall"
|
|
"test_truesendall_with_chunk_recording"
|
|
"test_truesendall_with_gzip_recording"
|
|
"test_truesendall_with_recording"
|
|
"test_wrongpath_truesendall"
|
|
"test_truesendall_with_dump_from_recording"
|
|
"test_truesendall_with_recording_https"
|
|
"test_truesendall_after_mocket_session"
|
|
"test_real_request_session"
|
|
"test_asyncio_record_replay"
|
|
"test_gethostbyname"
|
|
];
|
|
|
|
pythonImportsCheck = [ "mocket" ];
|
|
|
|
meta = with lib; {
|
|
description = "A socket mock framework - for all kinds of socket animals, web-clients included";
|
|
homepage = "https://github.com/mindflayer/python-mocket";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|