biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-logic / default.nix
blobc3e74008da92079fb1946c736b6e2b57417dcf6a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrest,
6   msrestazure,
7   azure-common,
8   azure-mgmt-core,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-logic";
14   version = "10.0.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.6";
19   src = fetchPypi {
20     inherit pname version;
21     extension = "zip";
22     hash = "sha256-s/pIZPFKqnr0HXeNkl8FHtKbYBb0Y0R2Xs0PSdDwTdY=";
23   };
25   propagatedBuildInputs = [
26     msrest
27     msrestazure
28     azure-common
29     azure-mgmt-core
30   ];
32   # Module has no tests
33   doCheck = false;
35   pythonImportsCheck = [ "azure.mgmt.logic" ];
37   meta = with lib; {
38     description = "This is the Microsoft Azure Logic Apps Management Client Library";
39     homepage = "https://github.com/Azure/azure-sdk-for-python";
40     license = licenses.mit;
41     maintainers = with maintainers; [ maxwilson ];
42   };