2018-06-12 17:25:28 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, case, vine, pytest-sugar }:
|
2018-03-31 10:06:58 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "amqp";
|
2018-06-12 17:25:28 +01:00
|
|
|
version = "2.3.2";
|
2018-03-31 10:06:58 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:25:28 +01:00
|
|
|
sha256 = "073dd02fdd73041bffc913b767866015147b61f2a9bc104daef172fc1a0066eb";
|
2018-03-31 10:06:58 +01:00
|
|
|
};
|
|
|
|
|
2018-06-12 17:25:28 +01:00
|
|
|
checkInputs = [ pytest case pytest-sugar ];
|
2018-03-31 10:06:58 +01:00
|
|
|
propagatedBuildInputs = [ vine ];
|
|
|
|
|
2018-06-12 17:25:28 +01:00
|
|
|
# Disable because pytest-sugar requires an old version of pytest
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-03-31 10:06:58 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|