Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / amqplib / default.nix
blob430065b7d1f80804e8d38ca258c17be6d32b66f2
1 { lib, buildPythonPackage, fetchPypi, python }:
3 buildPythonPackage rec {
4   pname = "amqplib";
5   version = "1.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     extension = "tgz";
10     sha256 = "843d69b681a60afd21fbf50f310404ec67fcdf9d13dfcf6e9d41f3b456217e5b";
11   };
13   # testing assumes network connection
14   doCheck = false;
16   checkPhase = ''
17     ${python.interpreter} tests/client_0_8/run_all.py
18   '';
20   meta = with lib; {
21     homepage = "https://github.com/barryp/py-amqplib";
22     description = "Python client for the Advanced Message Queuing Procotol (AMQP)";
23     license = licenses.lgpl21;
24   };