1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 pname = "amqplib"; 5 version = "0.6.1"; 6 7 src = fetchurl { 8 url = https://github.com/barryp/py-amqplib/archive/0.6.1.tar.gz; 9 sha256 = "04nsn68wz9m24rvbssirkyighazbn20j60wjmi0r7jcpcf00sb3s"; 10 }; 11 12 # error: invalid command 'test' 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 homepage = http://code.google.com/p/py-amqplib/; 17 description = "Python client for the Advanced Message Queuing Procotol (AMQP)"; 18 license = licenses.lgpl21; 19 }; 20}