python311Packages.azure-servicebus: 7.11.1 -> 7.11.2

This commit is contained in:
Fabian Affolter 2023-09-20 12:00:36 +02:00
parent 1c37330916
commit 34f81fae13

View file

@ -4,32 +4,29 @@
, buildPythonPackage
, fetchPypi
, isodate
, msrestazure
, msrest
, pythonOlder
, six
, typing-extensions
, uamqp
}:
buildPythonPackage rec {
pname = "azure-servicebus";
version = "7.11.1";
version = "7.11.2";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-iWbHtpFSiQTcpSQ6S8lrUWAi9kjesh1ZvKPVvNquxYU=";
hash = "sha256-0iKPBVxP6tP+vnU37QD8vDHeMsfULO02pxt6hg/RIw8=";
};
propagatedBuildInputs = [
azure-common
azure-core
isodate
msrestazure
six
msrest
typing-extensions
uamqp
];
@ -44,6 +41,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Microsoft Azure Service Bus Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};