pythonPackages.amqp: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 11:06:58 +02:00
committed by Frederik Rietdijk
parent 23741692fa
commit 4623b2d349
2 changed files with 21 additions and 20 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, case, vine }:
buildPythonPackage rec {
pname = "amqp";
version = "2.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "1ybywzkd840v1qvb1p2bs08js260vq1jscjg8182hv7bmwacqy0k";
};
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;
};
}