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