1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrest,
6 azure-common,
7 azure-mgmt-core,
8 setuptools,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-servicebus";
13 version = "8.2.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-i+kgjxQdmnifaNuNIZdU/3gGn9j5OQ6fdkS7laO+nsI=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 msrest
26 azure-common
27 azure-mgmt-core
28 ];
29
30 # Module has no tests
31 doCheck = false;
32
33 pythonNamespaces = [ "azure.mgmt" ];
34
35 pythonImportsCheck = [ "azure.mgmt.servicebus" ];
36
37 meta = {
38 description = "This is the Microsoft Azure Service Bus Management Client Library";
39 homepage = "https://github.com/Azure/azure-sdk-for-python";
40 license = lib.licenses.mit;
41 maintainers = with lib.maintainers; [ maxwilson ];
42 };
43}