1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 msrest,
8 pythonOlder,
9 setuptools,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-botservice";
14 version = "2.0.0";
15 pyproject = true;
16
17 disabled = pythonOlder "3.9";
18
19 src = fetchPypi {
20 inherit pname version;
21 hash = "sha256-hsBNJ8UnwZ2WAKiCFfriulJNxnRFU4ew0OUXIrWm1ro=";
22 extension = "zip";
23 };
24
25 build-system = [ setuptools ];
26
27 dependencies = [
28 azure-common
29 azure-mgmt-core
30 msrest
31 ];
32
33 # no tests included
34 doCheck = false;
35
36 pythonImportsCheck = [
37 "azure.common"
38 "azure.mgmt.botservice"
39 ];
40
41 meta = with lib; {
42 description = "Microsoft Azure API Management Client Library for Python";
43 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/botservice/azure-mgmt-botservice";
44 changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-botservice_${version}/sdk/botservice/azure-mgmt-botservice";
45 license = licenses.mit;
46 maintainers = [ ];
47 };
48}