c4df0fd7af
https://github.com/magic-wormhole/magic-wormhole/blob/refs/tags/0.22.0/NEWS.md https://github.com/magic-wormhole/magic-wormhole/compare/refs/tags/0.21.1...refs/tags/0.22.0
133 lines
2.7 KiB
Nix
133 lines
2.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
|
|
# build-system
|
|
setuptools,
|
|
versioneer,
|
|
|
|
# dependencies
|
|
attrs,
|
|
autobahn,
|
|
automat,
|
|
click,
|
|
cryptography,
|
|
humanize,
|
|
iterable-io,
|
|
pynacl,
|
|
qrcode,
|
|
spake2,
|
|
tqdm,
|
|
twisted,
|
|
txtorcon,
|
|
zipstream-ng,
|
|
|
|
# optional-dependencies
|
|
noiseprotocol,
|
|
|
|
# tests
|
|
net-tools,
|
|
unixtools,
|
|
hypothesis,
|
|
magic-wormhole-mailbox-server,
|
|
magic-wormhole-transit-relay,
|
|
pytestCheckHook,
|
|
pytest-twisted,
|
|
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "magic-wormhole";
|
|
version = "0.22.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magic-wormhole";
|
|
repo = "magic-wormhole";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-22UFwBcpuutFDRPFJAS9MBwoTdIx2xW0DSpR44DJ1lU=";
|
|
};
|
|
|
|
postPatch =
|
|
# enable tests by fixing the location of the wormhole binary
|
|
''
|
|
substituteInPlace src/wormhole/test/test_cli.py --replace-fail \
|
|
'locations = procutils.which("wormhole")' \
|
|
'return "${placeholder "out"}/bin/wormhole"'
|
|
''
|
|
# fix the location of the ifconfig binary
|
|
+ lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
sed -i -e "s|'ifconfig'|'${net-tools}/bin/ifconfig'|" src/wormhole/ipaddrs.py
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
versioneer
|
|
];
|
|
|
|
dependencies = [
|
|
attrs
|
|
autobahn
|
|
automat
|
|
click
|
|
cryptography
|
|
humanize
|
|
iterable-io
|
|
pynacl
|
|
qrcode
|
|
spake2
|
|
tqdm
|
|
twisted
|
|
txtorcon
|
|
zipstream-ng
|
|
]
|
|
++ autobahn.optional-dependencies.twisted
|
|
++ twisted.optional-dependencies.tls;
|
|
|
|
optional-dependencies = {
|
|
dilation = [ noiseprotocol ];
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
magic-wormhole-mailbox-server
|
|
magic-wormhole-transit-relay
|
|
pytestCheckHook
|
|
pytest-twisted
|
|
]
|
|
++ finalAttrs.finalPackage.optional-dependencies.dilation
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ unixtools.locale ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
postInstall = ''
|
|
install -Dm644 docs/wormhole.1 $out/share/man/man1/wormhole.1
|
|
|
|
# https://github.com/magic-wormhole/magic-wormhole/issues/619
|
|
installShellCompletion --cmd ${finalAttrs.meta.mainProgram} \
|
|
--bash wormhole_complete.bash \
|
|
--fish wormhole_complete.fish \
|
|
--zsh wormhole_complete.zsh
|
|
rm $out/wormhole_complete.*
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/magic-wormhole/magic-wormhole/blob/${finalAttrs.src.rev}/NEWS.md";
|
|
description = "Securely transfer data between computers";
|
|
homepage = "https://magic-wormhole.readthedocs.io/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.mjoerg ];
|
|
mainProgram = "wormhole";
|
|
};
|
|
})
|