{ lib, buildPythonPackage, fetchPypi , azure-common , azure-mgmt-core , msrest }: buildPythonPackage rec { pname = "azure-mgmt-extendedlocation"; version = "1.0.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "e2388407dc27b93dec3314bfa64210d3514b98a4f961c410321fb4292b9b3e9a"; }; propagatedBuildInputs = [ azure-common azure-mgmt-core msrest ]; pythonImportsCheck = [ "azure.mgmt.extendedlocation" ]; meta = with lib; { description = "Microsoft Azure Extendedlocation Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }