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