Merge pull request #261425 from ProminentRetail/syncrclone

syncrclone: init at unstable-2023-03-23
This commit is contained in:
Weijia Wang 2023-10-18 12:56:08 +02:00 committed by GitHub
commit b8d6d842d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,31 @@
{ 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";
};
}