Unverified Commit b8d6d842 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #261425 from ProminentRetail/syncrclone

syncrclone: init at unstable-2023-03-23
parents d426e3f7 05e56319
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication rec {
  pname = "syncrclone";
  version = "unstable-2023-03-23";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "jwink3101";
    repo = "syncrclone";
    rev = "137c9c4cc737a383b23cd9a5a21bb079e6a8fc59";
    hash = "sha256-v81hPeu5qnMG6Sb95D88jy5x/GO781bf7efCYjbOaxs=";
  };

  pythonImportsCheck = [
    "syncrclone"
  ];

  meta = with lib; {
    description = "Bidirectional sync tool for rclone";
    homepage = "https://github.com/Jwink3101/syncrclone";
    changelog = "https://github.com/Jwink3101/syncrclone/blob/${src.rev}/docs/changelog.md";
    sourceProvenance = with sourceTypes; [ fromSource ];
    license = licenses.mit;
    maintainers = with maintainers; [ prominentretail ];
    mainProgram = "syncrclone";
  };
}