nixpkgs/pkgs/applications/networking/p2p/stig/default.nix

66 lines
1.8 KiB
Nix
Raw Normal View History

2019-08-25 15:42:41 +01:00
{ lib
, fetchFromGitHub
2020-04-24 04:55:05 +01:00
, python3Packages
2019-08-25 15:42:41 +01:00
}:
2020-04-24 04:55:05 +01:00
python3Packages.buildPythonApplication rec {
2019-08-25 15:42:41 +01:00
pname = "stig";
# This project has a different concept for pre release / alpha,
# Read the project's README for details: https://github.com/rndusr/stig#stig
2020-07-11 04:22:42 +01:00
version = "0.11.2a0";
2019-08-25 15:42:41 +01:00
src = fetchFromGitHub {
owner = "rndusr";
repo = "stig";
rev = "v${version}";
2020-07-11 04:22:42 +01:00
sha256 = "05dn6mr86ly65gdqarl16a2jk1bwiw5xa6r4kyag3s6lqsv66iw8";
2019-08-25 15:42:41 +01:00
};
# urwidtrees 1.0.3 is requested by the developer because 1.0.2 (which is packaged
# in nixpkgs) is not uploaded to pypi and 1.0.1 has a problematic `setup.py`.
# As long as we don't have any problems installing it, no special features / specific bugs
# were fixed in 1.0.3 that aren't available in 1.0.2 are used by stig.
# See https://github.com/rndusr/stig/issues/120
postPatch = ''
substituteInPlace setup.py \
--replace "urwidtrees>=1.0.3dev0" "urwidtrees"
'';
2020-04-24 04:55:05 +01:00
propagatedBuildInputs = with python3Packages; [
2019-08-25 15:42:41 +01:00
urwid
urwidtrees
aiohttp
async-timeout
pyxdg
blinker
natsort
setproctitle
];
2020-04-24 04:55:05 +01:00
checkInputs = with python3Packages; [
2019-08-25 15:42:41 +01:00
asynctest
2020-04-24 04:55:05 +01:00
pytestCheckHook
2019-08-25 15:42:41 +01:00
];
2020-04-24 04:55:05 +01:00
dontUseSetuptoolsCheck = true;
preCheck = ''
export LC_ALL=C
2019-08-25 15:42:41 +01:00
'';
2020-04-24 04:55:05 +01:00
pytestFlagsArray = [
"tests"
# test_string__month_day_hour_minute_second fails on darwin
"--deselect=tests/client_test/ttypes_test.py::TestTimestamp::test_string__month_day_hour_minute_second"
2020-06-05 19:01:27 +01:00
# TestScrollBarWithScrollable.test_wrapping_bug fails
"--deselect=tests/tui_test/scroll_test.py::TestScrollBarWithScrollable::test_wrapping_bug"
2020-04-24 04:55:05 +01:00
];
2019-08-25 15:42:41 +01:00
meta = with lib; {
description = "TUI and CLI for the BitTorrent client Transmission";
homepage = "https://github.com/rndusr/stig";
license = licenses.gpl3;
maintainers = with maintainers; [ doronbehar ];
};
}