1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 azure-mgmt-core, 6 azure-common, 7 isodate, 8 pythonOlder, 9 setuptools, 10 typing-extensions, 11 azure-cli, 12}: 13 14buildPythonPackage rec { 15 pname = "azure-mgmt-resource-deploymentscripts"; 16 version = "1.0.0b1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.9"; 20 21 src = fetchPypi { 22 pname = "azure_mgmt_resource_deploymentscripts"; 23 inherit version; 24 hash = "sha256-Vm2FWVPpSbsrNMtD4ecwVKqnkoHHRhO3Rf/duCyAI3U="; 25 }; 26 27 build-system = [ setuptools ]; 28 29 dependencies = [ 30 azure-common 31 azure-mgmt-core 32 isodate 33 typing-extensions 34 ]; 35 36 # Module has no tests 37 doCheck = false; 38 39 pythonNamespaces = [ 40 "azure.mgmt.resource.deploymentscripts" 41 ]; 42 43 pythonImportsCheck = [ 44 "azure.mgmt.resource.deploymentscripts" 45 ]; 46 47 meta = with lib; { 48 description = "Microsoft Azure SDK for Python"; 49 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-deploymentscripts"; 50 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deploymentscripts_${version}/sdk/resources/azure-mgmt-resource-deploymentscripts/CHANGELOG.md"; 51 license = licenses.mit; 52 maintainers = azure-cli.meta.maintainers; 53 }; 54}