about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/see/default.nix
blob: 025d22facd2ac405b0ae9b48d0d530a557879f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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 ];
    mainProgram = "see";
  };
}