Merge pull request #268666 from fabaff/azure-eventhub-bump

python311Packages.azure-eventhub: 5.11.4 -> 5.11.5
This commit is contained in:
Fabian Affolter 2023-11-20 13:04:45 +01:00 committed by GitHub
commit f50d8ff8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,27 +2,24 @@
, buildPythonPackage
, fetchPypi
, azure-core
, uamqp
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "azure-eventhub";
version = "5.11.4";
version = "5.11.5";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-aLiaNRUEDxF2+bSWxMdtOBwQd3mu13V8u7mj2r4wqCM=";
hash = "sha256-HDdOmQezNIPVCLTHst8p+crGM15dpaGNIYU0+UL01Uw=";
};
propagatedBuildInputs = [
azure-core
uamqp
typing-extensions
];