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

python3Packages.pyicloud: 2.3.0 -> 2.4.1 (#492995)

parents a15b79e3 1758d773
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -18,16 +18,16 @@
  tzlocal,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyicloud";
  version = "2.3.0";
  version = "2.4.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "timlaing";
    repo = "pyicloud";
    tag = version;
    hash = "sha256-sejOJOzgZD531U5tHMoTwDH0ZkAi0sZ/nPp7uQDIZvU=";
    tag = finalAttrs.version;
    hash = "sha256-6Z5YhEqRzThQM5nHG0o+q4Rm/+A/ss3N6RDRz6mPJm4=";
  };

  postPatch = ''
@@ -68,8 +68,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 ];
  };
}
})