pythonPackages.azure-keyvault: init at 1.1.0

This commit is contained in:
Max Wilson 2019-04-29 17:54:49 -04:00 committed by Wael M. Nasreddine
parent 7eafb0a2c1
commit 83347ee08b
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-nspkg
, msrest
, msrestazure
, cryptography
}:
buildPythonPackage rec {
pname = "azure-keyvault";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "37a8e5f376eb5a304fcd066d414b5d93b987e68f9212b0c41efa37d429aadd49";
};
propagatedBuildInputs = [
azure-common
azure-nspkg
msrest
msrestazure
cryptography
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Key Vault Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/key-vault?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -256,6 +256,8 @@ in {
azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
azure-keyvault = callPackage ../development/python-modules/azure-keyvault { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };