3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/amqp/default.nix

21 lines
602 B
Nix
Raw Normal View History

2018-03-31 10:06:58 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, case, vine }:
buildPythonPackage rec {
pname = "amqp";
2018-04-04 19:01:04 +01:00
version = "2.2.2";
2018-03-31 10:06:58 +01:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:01:04 +01:00
sha256 = "cba1ace9d4ff6049b190d8b7991f9c1006b443a5238021aca96dd6ad2ac9da22";
2018-03-31 10:06:58 +01:00
};
buildInputs = [ pytest case ];
propagatedBuildInputs = [ vine ];
meta = with stdenv.lib; {
homepage = https://github.com/celery/py-amqp;
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;
};
}