python311Packages.ratelimiter: remove

ratelimiter has been removed, since it is unmaintained and broken

authored by Fabian Affolter and committed by Anderson Torres 8d3ab4e5 d48d2962

+1 -45
-43
pkgs/development/python-modules/ratelimiter/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytest-asyncio 5 - , pytestCheckHook 6 - }: 7 - 8 - buildPythonPackage rec { 9 - pname = "ratelimiter"; 10 - version = "1.2.0.post0"; 11 - format = "setuptools"; 12 - 13 - src = fetchPypi { 14 - inherit pname version; 15 - hash = "sha256-XDldyr273i5ReO8/ibVoowZkVKbdwiO3ZHPawi+JtPc="; 16 - }; 17 - 18 - nativeCheckInputs = [ 19 - pytest-asyncio 20 - pytestCheckHook 21 - ]; 22 - 23 - pythonImportsCheck = [ 24 - "ratelimiter" 25 - ]; 26 - 27 - preCheck = '' 28 - # Uses out-dated options 29 - rm tests/conftest.py 30 - ''; 31 - 32 - disabledTests = [ 33 - # TypeError: object Lock can't be used in 'await' expression 34 - "test_alock" 35 - ]; 36 - 37 - meta = with lib; { 38 - description = "Simple python rate limiting object"; 39 - homepage = "https://github.com/RazerM/ratelimiter"; 40 - license = licenses.asl20; 41 - maintainers = with maintainers; [ helkafen ]; 42 - }; 43 - }
···
+1
pkgs/top-level/python-aliases.nix
··· 354 Quandl = quandl; # added 2023-02-19 355 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 356 rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01 357 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05 358 recaptcha_client = throw "recaptcha_client has been removed since it is no longer maintained"; # added 2023-10-20 359 rednose = throw "rednose is no longer maintained (since February 2018)"; # added 2023-08-06
··· 354 Quandl = quandl; # added 2023-02-19 355 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 356 rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01 357 + ratelimiter = throw "ratelimiter has been removed, since it is unmaintained and broken"; # added 2023-10-21 358 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05 359 recaptcha_client = throw "recaptcha_client has been removed since it is no longer maintained"; # added 2023-10-20 360 rednose = throw "rednose is no longer maintained (since February 2018)"; # added 2023-08-06
-2
pkgs/top-level/python-packages.nix
··· 11995 11996 ratelimit = callPackage ../development/python-modules/ratelimit { }; 11997 11998 - ratelimiter = callPackage ../development/python-modules/ratelimiter { }; 11999 - 12000 rauth = callPackage ../development/python-modules/rauth { }; 12001 12002 raven = callPackage ../development/python-modules/raven { };
··· 11995 11996 ratelimit = callPackage ../development/python-modules/ratelimit { }; 11997 11998 rauth = callPackage ../development/python-modules/rauth { }; 11999 12000 raven = callPackage ../development/python-modules/raven { };