de1be9f613
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-aioamqp/versions
24 lines
509 B
Nix
24 lines
509 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy33, pythonOlder,
|
|
asyncio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioamqp";
|
|
version = "0.12.0";
|
|
|
|
meta = {
|
|
homepage = https://github.com/polyconseil/aioamqp;
|
|
description = "AMQP implementation using asyncio";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17vrl6jajr81bql7kjgq0zkxy225px97z4g9wmbhbbnvzn1p92c0";
|
|
};
|
|
|
|
buildInputs = lib.optionals isPy33 [ asyncio ];
|
|
|
|
disabled = pythonOlder "3.3";
|
|
}
|