2017-05-03 07:52:53 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nettools
|
|
|
|
, glibcLocales
|
|
|
|
, autobahn
|
|
|
|
, cffi
|
|
|
|
, click
|
|
|
|
, hkdf
|
|
|
|
, pynacl
|
|
|
|
, spake2
|
|
|
|
, tqdm
|
|
|
|
, python
|
|
|
|
, mock
|
|
|
|
}:
|
2016-11-25 08:12:23 +00:00
|
|
|
|
2017-05-03 07:52:53 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "magic-wormhole";
|
2017-05-27 12:24:47 +00:00
|
|
|
version = "0.9.2";
|
2017-05-03 07:52:53 +00:00
|
|
|
name = "${pname}-${version}";
|
2016-11-25 08:12:23 +00:00
|
|
|
|
2017-05-03 07:52:53 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 12:24:47 +00:00
|
|
|
sha256 = "14aed4b453278651d92c3fd8955a105e2d33dcde279fa25d1d759e0e769f16b3";
|
2016-11-25 08:12:23 +00:00
|
|
|
};
|
2016-11-25 23:34:41 +00:00
|
|
|
|
2017-05-03 07:52:53 +00:00
|
|
|
checkInputs = [ mock ];
|
2016-11-25 23:34:41 +00:00
|
|
|
buildInputs = [ nettools glibcLocales ];
|
2017-05-03 07:52:53 +00:00
|
|
|
propagatedBuildInputs = [ autobahn cffi click hkdf pynacl spake2 tqdm ];
|
2016-11-25 23:34:41 +00:00
|
|
|
|
2017-05-03 07:52:53 +00:00
|
|
|
postPatch = ''
|
2016-11-25 23:34:41 +00:00
|
|
|
sed -i -e "s|'ifconfig'|'${nettools}/bin/ifconfig'|" src/wormhole/ipaddrs.py
|
|
|
|
sed -i -e "s|if (os.path.dirname(os.path.abspath(wormhole))|if not os.path.abspath(wormhole).startswith('/nix/store') and (os.path.dirname(os.path.abspath(wormhole))|" src/wormhole/test/test_scripts.py
|
|
|
|
# XXX: disable one test due to warning:
|
|
|
|
# setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
|
|
|
|
sed -i -e "s|def test_text_subprocess|def skip_test_text_subprocess|" src/wormhole/test/test_scripts.py
|
2016-11-25 08:12:23 +00:00
|
|
|
'';
|
|
|
|
|
2016-11-25 23:34:41 +00:00
|
|
|
checkPhase = ''
|
|
|
|
export PATH="$PATH:$out/bin"
|
|
|
|
export LANG="en_US.UTF-8"
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
2017-05-03 07:52:53 +00:00
|
|
|
${python.interpreter} -m wormhole.test.run_trial wormhole
|
2016-11-25 23:34:41 +00:00
|
|
|
'';
|
2016-11-25 08:12:23 +00:00
|
|
|
|
2017-05-03 07:52:53 +00:00
|
|
|
meta = with lib; {
|
2016-11-25 08:12:23 +00:00
|
|
|
description = "Securely transfer data between computers";
|
|
|
|
homepage = "https://github.com/warner/magic-wormhole";
|
2016-11-25 23:34:41 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ asymmetric ];
|
2016-11-25 08:12:23 +00:00
|
|
|
};
|
|
|
|
}
|