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:
commit
ad4d02ca86
1 changed files with 15 additions and 13 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue