21 lines
532 B
Nix
21 lines
532 B
Nix
{ stdenv, buildPythonPackage, fetchurl }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "amqplib";
|
|
version = "0.6.1";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/barryp/py-amqplib/archive/0.6.1.tar.gz;
|
|
sha256 = "04nsn68wz9m24rvbssirkyighazbn20j60wjmi0r7jcpcf00sb3s";
|
|
};
|
|
|
|
# error: invalid command 'test'
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://code.google.com/p/py-amqplib/;
|
|
description = "Python client for the Advanced Message Queuing Procotol (AMQP)";
|
|
};
|
|
}
|