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