tuir: init at 1.28.03

Co-authored-by: Nikolay Korotkiy <sikmir@gmail.com>
This commit is contained in:
Oleksii Filonenko 2019-12-17 14:32:59 +02:00
parent 418ad571c3
commit 84e0fbfcac
No known key found for this signature in database
GPG Key ID: F3510FE5691629A1
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, fetchFromGitLab, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "tuir";
version = "1.28.3";
src = fetchFromGitLab {
owner = "ajak";
repo = pname;
rev = "v${version}";
sha256 = "0nhpbb0vdngwb0fhlimjgm3wq2s67m4rb3vv920zyllnmfplk0lk";
};
# Tests try to access network
doCheck = false;
checkPhase = ''
py.test
'';
checkInputs = [ coverage coveralls docopt mock pylint pytest vcrpy ];
propagatedBuildInputs = [ beautifulsoup4 decorator kitchen requests ];
meta = with lib; {
description = "Browse Reddit from your Terminal (fork of rtv)";
homepage = "https://gitlab.com/ajak/tuir/";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
};
}

View File

@ -6823,6 +6823,8 @@ in
ttylog = callPackage ../tools/misc/ttylog { };
tuir = callPackage ../applications/misc/tuir { };
turses = callPackage ../applications/networking/instant-messengers/turses { };
oysttyer = callPackage ../applications/networking/instant-messengers/oysttyer { };