1{ lib, buildPythonPackage, fetchPypi, isPy33, pythonOlder,
2 asyncio
3}:
4
5buildPythonPackage rec {
6 pname = "aioamqp";
7 version = "0.11.0";
8
9 meta = {
10 homepage = https://github.com/polyconseil/aioamqp;
11 description = "AMQP implementation using asyncio";
12 license = lib.licenses.bsd3;
13 };
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "7f1eb9e0f1b7c7e21a3a6ca498c3daafdfc3e95b4a1a0633fd8d6ba2dfcab777";
18 };
19
20 buildInputs = lib.optionals isPy33 [ asyncio ];
21
22 disabled = pythonOlder "3.3";
23}