nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09-beta 38 lines 742 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, python 5, isPy3k 6, msrestazure 7, azure-common 8, azure-mgmt-nspkg 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-relay"; 13 version = "0.2.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57"; 19 }; 20 21 propagatedBuildInputs = [ 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 Relay Client Library"; 34 homepage = "https://github.com/Azure/azure-sdk-for-python"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ mwilsoninsight ]; 37 }; 38}