Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / amqp / default.nix
blob6e6d95ba8f91c680a9b40dea6f072f188ac24742
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook, case, vine }:
3 buildPythonPackage rec {
4   pname = "amqp";
5   version = "5.0.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "affdd263d8b8eb3c98170b78bf83867cdb6a14901d586e00ddb65bfe2f0c4e60";
10   };
12   propagatedBuildInputs = [ vine ];
14   checkInputs = [ pytestCheckHook case ];
15   disabledTests = [
16     "test_rmq.py" # requires network access
17   ];
19   meta = with lib; {
20     homepage = "https://github.com/celery/py-amqp";
21     description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";
22     license = licenses.lgpl21;
23   };