pythonPackages.magic-wormhole: mark broken for Python 2.7

This commit is contained in:
Robert Helgesson 2019-12-18 22:13:19 +01:00 committed by Jon
parent 9772a585c0
commit 9a30a244e0

View file

@ -18,6 +18,7 @@
, mock
, magic-wormhole-transit-relay
, magic-wormhole-mailbox-server
, isPy27
}:
buildPythonPackage rec {
@ -55,6 +56,9 @@ buildPythonPackage rec {
description = "Securely transfer data between computers";
homepage = https://github.com/warner/magic-wormhole;
license = licenses.mit;
# Currently broken on Python 2.7. See
# https://github.com/NixOS/nixpkgs/issues/71826
broken = isPy27;
maintainers = with maintainers; [ asymmetric ];
};
}