-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75817 from filalex77/tuir-1.28.3
tuir: init at 1.28.03
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 matthiasbeyer ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters