-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
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 #248423 from schuelermine/add/see
see: init at unstable-2023-03-19
- Loading branch information
Showing
2 changed files
with
33 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,31 @@ | ||
{ lib, python3, fetchFromGitHub }: | ||
|
||
python3.pkgs.buildPythonApplication { | ||
pname = "see"; | ||
version = "unstable-2023-03-19"; | ||
format = "pyproject"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "Textualize"; | ||
repo = "textualize-see"; | ||
rev = "eef61dd348178ec60c5b0a01062e0b621eb57315"; | ||
hash = "sha256-SqjDHcFKWbk4ouWkhGohDl5kGjM/9fzqFDexVcaY1gw="; | ||
}; | ||
|
||
nativeBuildInputs = with python3.pkgs; [ | ||
poetry-core | ||
]; | ||
|
||
propagatedBuildInputs = with python3.pkgs; [ | ||
click | ||
colorama | ||
toml | ||
]; | ||
|
||
meta = { | ||
description = "Textualize See is a command line tool to open files in the terminal."; | ||
homepage = "https://github.com/Textualize/textualize-see"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ anselmschueler ]; | ||
}; | ||
} |
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