Merge pull request #303850 from r-ryantm/auto-update/python311Packages.azure-appconfiguration

python311Packages.azure-appconfiguration: 1.5.0 -> 1.6.0
This commit is contained in:
Fabian Affolter 2024-04-14 11:50:04 +02:00 committed by GitHub
commit ad4d02ca86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +1,28 @@
{ lib
, pythonOlder
, isodate
, fetchPypi
, buildPythonPackage
, azure-core
{
lib,
azure-core,
buildPythonPackage,
fetchPypi,
isodate,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-appconfiguration";
version = "1.5.0";
format = "setuptools";
version = "1.6.0";
pyporject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-cJIRe68GzY6T7ukhN+coF2m0AD/EFtSh7aZGuyVkAnw=";
hash = "sha256-z2KKPh6mZDR5ZDzSRt2kZO3Eq3hXQzOaao/oCbwTf+w=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
azure-core
isodate
];
@ -26,9 +30,7 @@ buildPythonPackage rec {
# Tests are not shipped
doCheck = false;
pythonImportsCheck = [
"azure.appconfiguration"
];
pythonImportsCheck = [ "azure.appconfiguration" ];
meta = with lib; {
description = "Microsoft App Configuration Data Library for Python";