Merge pull request #266631 from fabaff/azure-appconfiguration-bump

python311Packages.azure-appconfiguration: 1.4.0 -> 1.5.0
This commit is contained in:
Fabian Affolter 2023-11-10 12:38:50 +01:00 committed by GitHub
commit d01cf5e7c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +1,39 @@
{ lib, buildPythonPackage, fetchPypi, azure-core { lib
, msrest , pythonOlder
, isodate
, fetchPypi
, buildPythonPackage
, azure-core
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-appconfiguration"; pname = "azure-appconfiguration";
version = "1.4.0"; version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-cJIRe68GzY6T7ukhN+coF2m0AD/EFtSh7aZGuyVkAnw=";
hash = "sha256-fzZyT6j3K90FClJawf3o0F2TSMSu5pVqZvP8yJwTdBc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-core azure-core
msrest isodate
]; ];
pythonImportsCheck = [ "azure.appconfiguration" ]; # Tests are not shipped
doCheck = false;
pythonImportsCheck = [
"azure.appconfiguration"
];
meta = with lib; { meta = with lib; {
description = "Microsoft App Configuration Data Library for Python"; description = "Microsoft App Configuration Data Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-appconfiguration_${version}/sdk/appconfiguration/azure-appconfiguration/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jonringer ]; maintainers = with maintainers; [ jonringer ];
}; };