Commit 6174410a authored by Sarah Clark's avatar Sarah Clark
Browse files

tftui: accept posthog 4

parent 851c8b9a
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@
  lib,
  fetchFromGitHub,
  makeWrapper,
  python3,
  python3Packages,
  enableUsageTracking ? false,
}:

python3.pkgs.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "tftui";
  version = "0.13.5";
  pyproject = true;
@@ -19,15 +19,17 @@ python3.pkgs.buildPythonApplication rec {
  };

  pythonRelaxDeps = [
    "posthog"
    "textual"
  ];

  nativeBuildInputs = with python3.pkgs; [
  nativeBuildInputs = [
    makeWrapper
    poetry-core
  ];

  propagatedBuildInputs = with python3.pkgs; [
  build-system = [ python3Packages.poetry-core ];

  dependencies = with python3Packages; [
    posthog
    pyperclip
    requests