My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/txamqp/default.nix

25 lines
503 B

{ lib
, buildPythonPackage
, fetchPypi
, twisted
}:
buildPythonPackage rec {
pname = "txAMQP";
version = "0.8.2";
src = fetchPypi {
inherit pname version;
sha256 = "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4";
};
propagatedBuildInputs = [ twisted ];
meta = with lib; {
homepage = "https://github.com/txamqp/txamqp";
description = "Library for communicating with AMQP peers and brokers using Twisted";
license = licenses.asl20;
maintainers = [];
};
}