pythonPackages.azure-mgmt-relay: init at 0.2.0

This commit is contained in:
Max Wilson 2019-04-29 18:58:13 -04:00 committed by Wael M. Nasreddine
parent 6730fb4fcb
commit b7a690c164
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrestazure
, azure-common
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-relay";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57";
};
propagatedBuildInputs = [
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Relay Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/relay?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -376,6 +376,8 @@ in {
azure-mgmt-redis = callPackage ../development/python-modules/azure-mgmt-redis { };
azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { };
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };