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/pyrabbit2/default.nix

26 lines
537 B

{ 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 ];
};
}