c3ac4d4040
GitOrigin-RevId: 1158501e7c7cba26d922723cf9f70099995eb755
86 lines
1.7 KiB
Nix
86 lines
1.7 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
, flask
|
|
, limits
|
|
, rich
|
|
, typing-extensions
|
|
|
|
, asgiref
|
|
, hiro
|
|
, pymemcache
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, redis
|
|
, pymongo
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Limiter";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alisaifee";
|
|
repo = "flask-limiter";
|
|
rev = version;
|
|
sha256 = "sha256-JjksKwSMWzcslXCs977/Wlq1wDMaACxm8e6Ub+r3wPg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
limits
|
|
rich
|
|
typing-extensions
|
|
];
|
|
|
|
checkInputs = [
|
|
asgiref
|
|
pytest-mock
|
|
pytestCheckHook
|
|
hiro
|
|
redis
|
|
pymemcache
|
|
pymongo
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i "/--cov/d" pytest.ini
|
|
|
|
# flask-restful is unmaintained and breaks regularly, don't depend on it
|
|
sed -i "/import flask_restful/d" tests/test_views.py
|
|
'';
|
|
|
|
disabledTests = [
|
|
# flask-restful is unmaintained and breaks regularly
|
|
"test_flask_restful_resource"
|
|
|
|
# Requires running a docker instance
|
|
"test_clear_limits"
|
|
"test_constructor_arguments_over_config"
|
|
"test_custom_key_prefix"
|
|
"test_custom_key_prefix_with_headers"
|
|
"test_fallback_to_memory_backoff_check"
|
|
"test_fallback_to_memory_config"
|
|
"test_fallback_to_memory_with_global_override"
|
|
"test_redis_request_slower_than_fixed_window"
|
|
"test_redis_request_slower_than_moving_window"
|
|
"test_reset_unsupported"
|
|
|
|
# Requires redis
|
|
"test_fallback_to_memory"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# requires running redis/memcached/mongodb
|
|
"tests/test_storage.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "flask_limiter" ];
|
|
|
|
meta = with lib; {
|
|
description = "Rate limiting for flask applications";
|
|
homepage = "https://flask-limiter.readthedocs.org/";
|
|
license = licenses.mit;
|
|
};
|
|
}
|