python3Packages.azure-eventhub: init at 5.5.0
This commit is contained in:
parent
ff3b3e696a
commit
3e85bb55ed
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/azure-eventhub/default.nix
Normal file
37
pkgs/development/python-modules/azure-eventhub/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, azure-core
|
||||
, uamqp
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-eventhub";
|
||||
version = "5.5.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "7b757b4910ac74902564b38089b9861c1bc51ff15bd49ff056888f939f7c4c49";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-core
|
||||
uamqp
|
||||
];
|
||||
|
||||
# too complicated to set up
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"azure.eventhub"
|
||||
"azure.eventhub.aio"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure Event Hubs Client Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/eventhub/azure-eventhub";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -725,6 +725,8 @@ in {
|
|||
|
||||
azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { };
|
||||
|
||||
azure-eventhub = callPackage ../development/python-modules/azure-eventhub { };
|
||||
|
||||
azure-functions-devops-build = callPackage ../development/python-modules/azure-functions-devops-build { };
|
||||
|
||||
azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
|
||||
|
|
Loading…
Reference in a new issue