From 7582e9565b299e96e1d034272b6c90bff3b00299 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Sun, 8 Jun 2025 13:53:29 +0000 Subject: [PATCH] magic-wormhole: 0.18.0 -> 0.19.2 https://github.com/magic-wormhole/magic-wormhole/blob/refs/tags/0.19.2/NEWS.md https://github.com/magic-wormhole/magic-wormhole/compare/refs/tags/0.18.0...refs/tags/0.19.2 --- .../python-modules/magic-wormhole/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/magic-wormhole/default.nix b/pkgs/development/python-modules/magic-wormhole/default.nix index 99d4b10751a9..0d32ac8bcbbf 100644 --- a/pkgs/development/python-modules/magic-wormhole/default.nix +++ b/pkgs/development/python-modules/magic-wormhole/default.nix @@ -34,20 +34,21 @@ magic-wormhole-transit-relay, magic-wormhole-mailbox-server, pytestCheckHook, + pytest-twisted, gitUpdater, }: buildPythonPackage rec { pname = "magic-wormhole"; - version = "0.18.0"; + version = "0.19.2"; pyproject = true; src = fetchFromGitHub { owner = "magic-wormhole"; repo = "magic-wormhole"; tag = version; - hash = "sha256-FQ7m6hkJcFZaE+ptDALq/gijn/RcAM1Zvzi2+xpoXBU="; + hash = "sha256-5Tipcood5RktXY05p20hQpWhSMMnZm67I4iybjV8TcA="; }; postPatch = @@ -100,10 +101,13 @@ buildPythonPackage rec { magic-wormhole-mailbox-server magic-wormhole-transit-relay pytestCheckHook + pytest-twisted ] ++ optional-dependencies.dilation ++ lib.optionals stdenv.hostPlatform.isDarwin [ unixtools.locale ]; + pytestFlagsArray = [ "src/wormhole/test" ]; + __darwinAllowLocalNetworking = true; postInstall = '' @@ -119,7 +123,7 @@ buildPythonPackage rec { meta = { changelog = "https://github.com/magic-wormhole/magic-wormhole/blob/${version}/NEWS.md"; description = "Securely transfer data between computers"; - homepage = "https://github.com/magic-wormhole/magic-wormhole"; + homepage = "https://magic-wormhole.readthedocs.io/"; license = lib.licenses.mit; maintainers = [ lib.maintainers.mjoerg ]; mainProgram = "wormhole";