1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 requests, 6}: 7 8buildPythonPackage rec { 9 pname = "pyrabbit2"; 10 version = "1.0.7"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "d27160cb35c096f0072df57307233d01b117a451236e136604a8e51be6f106c0"; 16 }; 17 18 propagatedBuildInputs = [ requests ]; 19 20 meta = with lib; { 21 description = "Pythonic interface to the RabbitMQ Management HTTP API"; 22 homepage = "https://github.com/deslum/pyrabbit2"; 23 license = licenses.mit; 24 maintainers = [ ]; 25 }; 26}