Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi 2, azure-common 3, azure-mgmt-core 4, msrest 5}: 6 7buildPythonPackage rec { 8 pname = "azure-mgmt-extendedlocation"; 9 version = "1.1.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 extension = "zip"; 14 hash = "sha256-jRo6EFP8Dg3i9U8HLfjED9QFfWbdg+X3o9PSf4eus9o="; 15 }; 16 17 propagatedBuildInputs = [ 18 azure-common 19 azure-mgmt-core 20 msrest 21 ]; 22 23 pythonImportsCheck = [ "azure.mgmt.extendedlocation" ]; 24 25 meta = with lib; { 26 description = "Microsoft Azure Extendedlocation Management Client Library for Python"; 27 homepage = "https://github.com/Azure/azure-sdk-for-python"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ jonringer ]; 30 }; 31}