13 buildPythonPackage rec {
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-3+PoDB5Owy8BWBUisX0i1mV8rqs5K9pBFQwup8vKxlg=";
31 pythonRelaxDeps = [ "pamqp" ];
33 propagatedBuildInputs = [
38 nativeCheckInputs = [ pytestCheckHook ];
40 checkInputs = [ aiomisc-pytest ];
42 # Tests attempt to connect to a RabbitMQ server
44 "tests/test_channel.py"
45 "tests/test_connection.py"
48 pythonImportsCheck = [ "aiormq" ];
51 description = "AMQP 0.9.1 asynchronous client library";
52 homepage = "https://github.com/mosquito/aiormq";
53 changelog = "https://github.com/mosquito/aiormq/releases/tag/${version}";
54 license = licenses.asl20;
55 maintainers = with maintainers; [ emilytrau ];