pythonPackages.aioamqp: init at 0.10.0
This commit is contained in:
committed by
Frederik Rietdijk
parent
f31c6c150a
commit
712942dea3
24
pkgs/development/python-modules/aioamqp/default.nix
Normal file
24
pkgs/development/python-modules/aioamqp/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy33, pythonOlder,
|
||||
asyncio
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioamqp";
|
||||
name = "${pname}-${version}";
|
||||
version = "0.10.0";
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/polyconseil/aioamqp;
|
||||
description = "AMQP implementation using asyncio";
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0132921yy31ijb8w439zcz1gla4hiws4hx8zf6la4hjr01nsy666";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals isPy33 [ asyncio ];
|
||||
|
||||
disabled = pythonOlder "3.3";
|
||||
}
|
||||
Reference in New Issue
Block a user