567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
75 lines
1.6 KiB
Nix
75 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchpatch,
|
|
fetchFromGitHub,
|
|
buildPythonApplication,
|
|
click,
|
|
pydantic,
|
|
toml,
|
|
watchdog,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
rsync,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "remote-exec";
|
|
version = "1.13.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "remote-cli";
|
|
repo = "remote";
|
|
tag = "v${version}";
|
|
hash = "sha256-rsboHJLOHXnpXtsVsvsfKsav8mSbloaq2lzZnU2pw6c=";
|
|
};
|
|
|
|
patches = [
|
|
# relax install requirements
|
|
# https://github.com/remote-cli/remote/pull/60.patch
|
|
(fetchpatch {
|
|
url = "https://github.com/remote-cli/remote/commit/a2073c30c7f576ad7ceb46e39f996de8d06bf186.patch";
|
|
hash = "sha256-As0j+yY6LamhOCGFzvjUQoXFv46BN/tRBpvIS7r6DaI=";
|
|
})
|
|
];
|
|
|
|
# remove legacy endpoints, we use --multi now
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail '"mremote' '#"mremote'
|
|
'';
|
|
|
|
dependencies = [
|
|
click
|
|
pydantic
|
|
toml
|
|
watchdog
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
nativeCheckInputs = [
|
|
rsync
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
];
|
|
|
|
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# `watchdog` dependency does not correctly detect fsevents on darwin.
|
|
# this only affects `remote --stream-changes`
|
|
"test/test_file_changes.py"
|
|
];
|
|
|
|
meta = {
|
|
description = "Work with remote hosts seamlessly via rsync and ssh";
|
|
homepage = "https://github.com/remote-cli/remote";
|
|
changelog = "https://github.com/remote-cli/remote/releases/tag/v${version}";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ pbsds ];
|
|
};
|
|
}
|