about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/tftui/default.nix
blob: 3a9d657dbdd2ba3b8536daae753f9437ed871f00 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ lib
, buildPythonApplication
, fetchPypi
, makeWrapper
, poetry-core
, posthog
, pyperclip
, requests
, rich
, textual
, enableUsageTracking ? false
}:

buildPythonApplication rec {
  pname = "tftui";
  version = "0.12.4";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-E4Y0qA7SooMlHh+oSFUl1hfblpirr/Jdb1C2fqU43t0=";
  };

  propagatedBuildInputs = [
    posthog
    pyperclip
    requests
    rich
    textual
  ];

  nativeBuildInputs = [
    makeWrapper
    poetry-core
  ];

  pythonImportsCheck = [
    "tftui"
  ];

  postInstall = lib.optionalString (!enableUsageTracking) ''
    wrapProgram $out/bin/tftui \
      --add-flags "--disable-usage-tracking"
  '';

  meta = with lib; {
    description = "Textual UI to view and interact with Terraform state";
    homepage = "https://github.com/idoavrah/terraform-tui";
    changelog = "https://github.com/idoavrah/terraform-tui/releases";
    license = licenses.asl20;
    maintainers = with maintainers; teams.bitnomial.members;
    mainProgram = "tftui";
  };
}