mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
28 lines
541 B
Nix
28 lines
541 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyrabbit2";
|
|
version = "1.0.7";
|
|
format = "setuptools";
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|