Unverified Commit ad4d02ca authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.azure-appconfiguration: 1.5.0 -> 1.6.0
parents d97cd093 89317108
Loading
Loading
Loading
Loading
+15 −13
Original line number Diff line number Diff line
{ 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";