python311Packages.pamqp: 3.2.1 -> 3.3.0
Diff: https://github.com/gmr/pamqp/compare/3.2.1...3.3.0 Changelog: https://github.com/gmr/pamqp/blob/3.3.0/docs/changelog.rst
This commit is contained in:
parent
c3e128f3c0
commit
179b280c37
1 changed files with 9 additions and 3 deletions
|
@ -2,24 +2,29 @@
|
|||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.2.1";
|
||||
version = "3.3.0";
|
||||
pname = "pamqp";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gmr";
|
||||
repo = "pamqp";
|
||||
rev = version;
|
||||
hash = "sha256-zvvRoGMNP4NMy3Etjif5MYUPdRqmQXATbFgxaPp1TaM=";
|
||||
hash = "sha256-0vjiPBLd8afnATjmV2sINsBd4j7L544u5DA3jLiLSsY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
@ -38,6 +43,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/gmr/pamqp/blob/${src.rev}/docs/changelog.rst";
|
||||
description = "RabbitMQ Focused AMQP low-level library";
|
||||
homepage = "https://github.com/gmr/pamqp";
|
||||
license = licenses.bsd3;
|
||||
|
|
Loading…
Reference in a new issue