remote-exec: 1.13.2 -> 1.13.3
release: https://github.com/remote-cli/remote/releases/tag/v1.13.3 diff: https://github.com/remote-cli/remote/compare/v1.13.2...v1.13.3
This commit is contained in:
parent
77e68f9b88
commit
c2ba0016de
@ -1,9 +1,10 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
|
, fetchpatch
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, buildPythonApplication
|
, buildPythonApplication
|
||||||
, click
|
, click
|
||||||
, pydantic_1
|
, pydantic
|
||||||
, toml
|
, toml
|
||||||
, watchdog
|
, watchdog
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
@ -12,15 +13,24 @@
|
|||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "remote-exec";
|
pname = "remote-exec";
|
||||||
version = "1.13.2";
|
version = "1.13.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "remote-cli";
|
owner = "remote-cli";
|
||||||
repo = "remote";
|
repo = "remote";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-xaxkN6XukV9HiLYehwVTBZB8bUyjgpfg+pPfAGrOkgo=";
|
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
|
# remove legacy endpoints, we use --multi now
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
@ -29,7 +39,7 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
click
|
click
|
||||||
pydantic_1
|
pydantic
|
||||||
toml
|
toml
|
||||||
watchdog
|
watchdog
|
||||||
];
|
];
|
||||||
@ -58,6 +68,7 @@ buildPythonApplication rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Work with remote hosts seamlessly via rsync and ssh";
|
description = "Work with remote hosts seamlessly via rsync and ssh";
|
||||||
homepage = "https://github.com/remote-cli/remote";
|
homepage = "https://github.com/remote-cli/remote";
|
||||||
|
changelog = "https://github.com/remote-cli/remote/releases/tag/v${version}";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ pbsds ];
|
maintainers = with maintainers; [ pbsds ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user