lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.azure-mgmt-logic: modernize

pyrox.dev 11cbbfdd 4b11103f

verified
+10 -8
+10 -8
pkgs/development/python-modules/azure-mgmt-logic/default.nix
··· 5 5 msrest, 6 6 azure-common, 7 7 azure-mgmt-core, 8 - pythonOlder, 8 + setuptools, 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-logic"; 13 13 version = "10.0.0"; 14 - format = "setuptools"; 15 - 16 - disabled = pythonOlder "3.6"; 14 + pyproject = true; 17 15 18 16 src = fetchPypi { 19 17 inherit pname version; ··· 21 19 hash = "sha256-s/pIZPFKqnr0HXeNkl8FHtKbYBb0Y0R2Xs0PSdDwTdY="; 22 20 }; 23 21 24 - propagatedBuildInputs = [ 22 + build-system = [ setuptools ]; 23 + 24 + dependencies = [ 25 25 msrest 26 26 azure-common 27 27 azure-mgmt-core ··· 30 30 # Module has no tests 31 31 doCheck = false; 32 32 33 + pythonNamespaces = [ "azure.mgmt" ]; 34 + 33 35 pythonImportsCheck = [ "azure.mgmt.logic" ]; 34 36 35 - meta = with lib; { 37 + meta = { 36 38 description = "This is the Microsoft Azure Logic Apps Management Client Library"; 37 39 homepage = "https://github.com/Azure/azure-sdk-for-python"; 38 - license = licenses.mit; 39 - maintainers = with maintainers; [ maxwilson ]; 40 + license = lib.licenses.mit; 41 + maintainers = with lib.maintainers; [ maxwilson ]; 40 42 }; 41 43 }