Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 22.05-pre 38 lines 746 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, msrestazure 6, azure-common 7, azure-mgmt-nspkg 8}: 9 10buildPythonPackage rec { 11 pname = "azure-mgmt-msi"; 12 version = "1.0.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 sha256 = "0n4gbwk843z66hhpcp1kcrnwqkzygbbc2ma01r9asgfv4nmklvyl"; 18 }; 19 20 propagatedBuildInputs = [ 21 msrest 22 msrestazure 23 azure-common 24 azure-mgmt-nspkg 25 ]; 26 27 pythonNamespaces = [ "azure.mgmt" ]; 28 29 # has no tests 30 doCheck = false; 31 32 meta = with lib; { 33 description = "This is the Microsoft Azure MSI Management Client Library"; 34 homepage = "https://github.com/Azure/azure-sdk-for-python"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ maxwilson ]; 37 }; 38}