Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / txamqp / default.nix
blobcc66e041ae38a057841a7286fd0fe41e0df58d1b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , twisted
5 }:
7 buildPythonPackage rec {
8   pname = "txAMQP";
9   version = "0.8.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4";
14   };
16   propagatedBuildInputs = [ twisted ];
18   meta = with lib; {
19     homepage = "https://github.com/txamqp/txamqp";
20     description = "Library for communicating with AMQP peers and brokers using Twisted";
21     license = licenses.asl20;
22     maintainers = [];
23   };