nixpkgs/pkgs/development/python-modules/amqp/default.nix

25 lines
692 B
Nix
Raw Normal View History

2020-07-07 14:04:48 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, case, vine }:
2018-03-31 10:06:58 +01:00
buildPythonPackage rec {
pname = "amqp";
2020-08-16 18:30:49 +01:00
version = "2.6.1";
2018-03-31 10:06:58 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:30:49 +01:00
sha256 = "70cdb10628468ff14e57ec2f751c7aa9e48e7e3651cfd62d431213c0c4e58f21";
2018-03-31 10:06:58 +01:00
};
propagatedBuildInputs = [ vine ];
2020-07-07 14:04:48 +01:00
checkInputs = [ pytestCheckHook case ];
disabledTests = [
"test_rmq.py" # requires network access
];
2018-06-12 17:25:28 +01:00
2018-03-31 10:06:58 +01:00
meta = with stdenv.lib; {
homepage = "https://github.com/celery/py-amqp";
2018-03-31 10:06:58 +01:00
description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";
license = licenses.lgpl21;
};
}