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

python314Packages.pyicloud: migrate to finalAttrs

parent f66870b6
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
  tzlocal,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyicloud";
  version = "2.4.1";
  pyproject = true;
@@ -26,7 +26,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "timlaing";
    repo = "pyicloud";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-6Z5YhEqRzThQM5nHG0o+q4Rm/+A/ss3N6RDRz6mPJm4=";
  };

@@ -63,8 +63,8 @@ buildPythonPackage rec {
    description = "Module to interact with iCloud webservices";
    mainProgram = "icloud";
    homepage = "https://github.com/timlaing/pyicloud";
    changelog = "https://github.com/timlaing/pyicloud/releases/tag/${src.tag}";
    changelog = "https://github.com/timlaing/pyicloud/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.mic92 ];
  };
}
})