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-logic";
13 version = "10.0.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-s/pIZPFKqnr0HXeNkl8FHtKbYBb0Y0R2Xs0PSdDwTdY=";
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.logic" ];
36
37 meta = {
38 description = "This is the Microsoft Azure Logic Apps 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}