ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / amqp / default.nix
blobec4dd4dfcbeede648cabb4258cc7dd9bc5edc664
1 { lib
2 , buildPythonPackage
3 , case
4 , fetchPypi
5 , pytestCheckHook
6 , pythonOlder
7 , vine
8 }:
10 buildPythonPackage rec {
11   pname = "amqp";
12   version = "5.1.1";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-LBsT/swIk+lGxly9XzZCeGHP+k6iIB2Pb8oi4qNzteI=";
20   };
22   propagatedBuildInputs = [
23     vine
24   ];
26   checkInputs = [
27     case
28     pytestCheckHook
29   ];
31   disabledTests = [
32     # Requires network access
33     "test_rmq.py"
34   ];
36   pythonImportsCheck = [
37     "amqp"
38   ];
40   meta = with lib; {
41     description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";
42     homepage = "https://github.com/celery/py-amqp";
43     license = licenses.bsd3;
44     maintainers = with maintainers; [ fab ];
45   };