pythonPackages.pyrabbit2: init at 1.0.7

This commit is contained in:
Chris Ostrouchov 2019-12-29 17:20:21 -05:00 committed by Frederik Rietdijk
parent 3af601f37d
commit 98d34eda12
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "pyrabbit2";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "d27160cb35c096f0072df57307233d01b117a451236e136604a8e51be6f106c0";
};
propagatedBuildInputs = [
requests
];
meta = with lib; {
description = "A Pythonic interface to the RabbitMQ Management HTTP API";
homepage = https://github.com/deslum/pyrabbit2;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -4730,6 +4730,8 @@ in {
pyqrcode = callPackage ../development/python-modules/pyqrcode { };
pyrabbit2 = callPackage ../development/python-modules/pyrabbit2 { };
pyrr = callPackage ../development/python-modules/pyrr { };
pysha3 = callPackage ../development/python-modules/pysha3 { };