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

24 lines
716 B
Nix
Raw Normal View History

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";
2019-02-14 07:37:10 +00:00
version = "2.4.1";
2018-03-31 10:06:58 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:10 +00:00
sha256 = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb";
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;
};
}