diff options
| author | Oleksii Filonenko <brightone@protonmail.com> | 2019-12-17 14:32:59 +0200 |
|---|---|---|
| committer | Oleksii Filonenko <brightone@protonmail.com> | 2019-12-30 17:33:29 +0200 |
| commit | 84e0fbfcac1876000b959773dc69a3e83d5c441d (patch) | |
| tree | 642e6a7c38fbbcceeb26403770eae8415120c545 | |
| parent | Fix manylinux packages (diff) | |
| download | nixpkgs-84e0fbfcac1876000b959773dc69a3e83d5c441d.tar.gz | |
tuir: init at 1.28.03
Co-authored-by: Nikolay Korotkiy <sikmir@gmail.com>
| -rw-r--r-- | pkgs/applications/misc/tuir/default.nix | 32 | ||||
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 2 |
2 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tuir/default.nix b/pkgs/applications/misc/tuir/default.nix new file mode 100644 index 000000000000..d6cb2daa8811 --- /dev/null +++ b/pkgs/applications/misc/tuir/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f6b16b1ef32f..2d36df96defa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { }; |
