nixpkgs/pkgs/development/python-modules/txamqp/default.nix

26 lines
513 B
Nix
Raw Normal View History

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