2021-11-12 09:22:34 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, azure-core
|
2020-09-28 18:08:34 +00:00
|
|
|
, msrest
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-appconfiguration";
|
2023-02-15 04:11:06 +00:00
|
|
|
version = "1.4.0";
|
2020-09-28 18:08:34 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2023-03-03 00:48:06 +00:00
|
|
|
hash = "sha256-fzZyT6j3K90FClJawf3o0F2TSMSu5pVqZvP8yJwTdBc=";
|
2020-09-28 18:08:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
azure-core
|
|
|
|
msrest
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "azure.appconfiguration" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Microsoft App Configuration Data Library for Python";
|
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jonringer ];
|
|
|
|
};
|
|
|
|
}
|