Merge pull request #240850 from natsukium/rabbitpy/remove

python310Packages.rabbitpy: remove

authored by

Nick Cao and committed by
GitHub
81b563d0 b6ced205

+1 -49
-47
pkgs/development/python-modules/rabbitpy/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , mock 5 - , nose 6 - , pamqp 7 - }: 8 - 9 - buildPythonPackage rec { 10 - version = "2.0.1"; 11 - pname = "rabbitpy"; 12 - 13 - # No tests in the pypi tarball, so we directly fetch from git 14 - src = fetchFromGitHub { 15 - owner = "gmr"; 16 - repo = pname; 17 - rev = version; 18 - sha256 = "0m5z3i3d5adrz1wh6y35xjlls3cq6p4y9p1mzghw3k7hdvg26cck"; 19 - }; 20 - 21 - propagatedBuildInputs = [ pamqp ]; 22 - nativeCheckInputs = [ mock nose ]; 23 - 24 - checkPhase = '' 25 - runHook preCheck 26 - rm tests/integration_tests.py # Impure tests requiring network 27 - nosetests tests 28 - runHook postCheck 29 - ''; 30 - 31 - postPatch = '' 32 - # See: https://github.com/gmr/rabbitpy/issues/118 33 - substituteInPlace setup.py \ 34 - --replace 'pamqp>=2,<3' 'pamqp' 35 - ''; 36 - 37 - meta = with lib; { 38 - description = "A pure python, thread-safe, minimalistic and pythonic RabbitMQ client library"; 39 - homepage = "https://pypi.python.org/pypi/rabbitpy"; 40 - license = licenses.bsd3; 41 - 42 - # broken by pamqp==3, tracked in 43 - # https://github.com/gmr/rabbitpy/issues/125 44 - broken = true; 45 - }; 46 - 47 - }
+1
pkgs/top-level/python-aliases.nix
··· 283 283 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 284 284 Quandl = quandl; # added 2023-02-19 285 285 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 286 + rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01 286 287 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05 287 288 retworkx = rustworkx; # added 2023-05-14 288 289 repeated_test = repeated-test; # added 2022-11-15
-2
pkgs/top-level/python-packages.nix
··· 10510 10510 10511 10511 r2pipe = callPackage ../development/python-modules/r2pipe { }; 10512 10512 10513 - rabbitpy = callPackage ../development/python-modules/rabbitpy { }; 10514 - 10515 10513 rachiopy = callPackage ../development/python-modules/rachiopy { }; 10516 10514 10517 10515 radicale_infcloud = callPackage ../development/python-modules/radicale_infcloud {