Unverified Commit 99c9b629 authored by Jon Seager's avatar Jon Seager Committed by GitHub
Browse files

icloudpd: 1.24.0 -> 1.24.3 (#353782)

parents bb6d800c d711d8fb
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

python3Packages.buildPythonApplication rec {
  pname = "icloudpd";
  version = "1.24.0";
  version = "1.24.3";
  pyproject = true;

  src = fetchFromGitHub {
@@ -72,8 +72,11 @@ python3Packages.buildPythonApplication rec {

  preBuild = ''
    substituteInPlace pyproject.toml \
      --replace "setuptools==69.0.2" "setuptools" \
      --replace "wheel==0.42.0" "wheel"
      --replace-fail "setuptools==69.0.2" "setuptools" \
      --replace-fail "wheel==0.42.0" "wheel"

    substituteInPlace src/foundation/__init__.py \
      --replace-fail "0.0.1" "${version}"
  '';

  meta = with lib; {
+2 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "srp";
  version = "1.0.21";
  version = "1.0.22";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-hmgTvPUhGJoVY+bKMRK29U/fclpBCi2+u28NhLgqHx0=";
    hash = "sha256-8zDQ7HOH4qyFd0h7FkljFV1KAxvKbiAk8bCTDrkrql0=";
  };

  propagatedBuildInputs = [ six ];