45 lines
863 B
Nix
45 lines
863 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, python
|
|
, isPy3k
|
|
, fetchPypi
|
|
, azure-common
|
|
, azure-nspkg
|
|
, msrest
|
|
, msrestazure
|
|
, cryptography
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-keyvault";
|
|
version = "4.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "e85f5bd6cb4f10b3248b99bbf02e3acc6371d366846897027d4153f18025a2d7";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
azure-common
|
|
azure-nspkg
|
|
msrest
|
|
msrestazure
|
|
cryptography
|
|
];
|
|
|
|
postInstall = lib.optionalString isPy3k ''
|
|
rm $out/${python.sitePackages}/azure/__init__.py
|
|
'';
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "This is the Microsoft Azure Key Vault Client Library";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mwilsoninsight ];
|
|
};
|
|
}
|