summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyrabbit2/default.nix
blob: 40515e959ea2a23fd3e709e885870772c61b94ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
}:

buildPythonPackage rec {
  pname = "pyrabbit2";
  version = "1.0.7";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d27160cb35c096f0072df57307233d01b117a451236e136604a8e51be6f106c0";
  };

  propagatedBuildInputs = [ requests ];

  meta = {
    description = "Pythonic interface to the RabbitMQ Management HTTP API";
    homepage = "https://github.com/deslum/pyrabbit2";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}