about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioamqp/default.nix
blob: 3cd6277a3faa0415fa9ce1724c7b04147af20caf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, pythonOlder,
}:

buildPythonPackage rec {
  pname = "aioamqp";
  version = "0.13.0";

  meta = {
    homepage = https://github.com/polyconseil/aioamqp;
    description = "AMQP implementation using asyncio";
    license = lib.licenses.bsd3;
  };

  src = fetchPypi {
    inherit pname version;
    sha256 = "ced0d2bb0054809b37b0636da34fc7cda23d66943fb5f9f0610555988cf347b2";
  };

  disabled = pythonOlder "3.3";
}