Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-logic / default.nix
blobfc22b57d98a876d7c20c8c2f716cd4fdb9defbb8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-logic";
13   version = "10.0.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     hash = "sha256-s/pIZPFKqnr0HXeNkl8FHtKbYBb0Y0R2Xs0PSdDwTdY=";
22   };
24   propagatedBuildInputs = [
25     msrest
26     msrestazure
27     azure-common
28     azure-mgmt-core
29   ];
31   # Module has no tests
32   doCheck = false;
34   pythonImportsCheck = [
35     "azure.mgmt.logic"
36   ];
38   meta = with lib; {
39     description = "This is the Microsoft Azure Logic Apps Management Client Library";
40     homepage = "https://github.com/Azure/azure-sdk-for-python";
41     license = licenses.mit;
42     maintainers = with maintainers; [ maxwilson ];
43   };