linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-logic / default.nix
blobbc63084410ce6b7581002a83574ffbbb4628dbd6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , azure-mgmt-nspkg
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-logic";
13   version = "9.0.0";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "d3a780d299c4db59134bd984c4c9281b9b6ae5d4ba185bcbae43f6c3af04f85a";
19   };
21   propagatedBuildInputs = [
22     msrest
23     msrestazure
24     azure-common
25     azure-mgmt-core
26     azure-mgmt-nspkg
27   ];
29   # has no tests
30   doCheck = false;
31   pythonImportsCheck = [ "azure.mgmt.logic" ];
33   meta = with lib; {
34     description = "This is the Microsoft Azure Logic Apps Management Client Library";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ maxwilson ];
38   };