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