tftui: accept posthog 4 (#407112)

This commit is contained in:
Nick Cao 2025-05-16 19:22:07 -04:00 committed by GitHub
commit 11e0819a5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,11 +2,11 @@
lib, lib,
fetchFromGitHub, fetchFromGitHub,
makeWrapper, makeWrapper,
python3, python3Packages,
enableUsageTracking ? false, enableUsageTracking ? false,
}: }:
python3.pkgs.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "tftui"; pname = "tftui";
version = "0.13.5"; version = "0.13.5";
pyproject = true; pyproject = true;
@ -19,15 +19,17 @@ python3.pkgs.buildPythonApplication rec {
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
"posthog"
"textual" "textual"
]; ];
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = [
makeWrapper makeWrapper
poetry-core
]; ];
propagatedBuildInputs = with python3.pkgs; [ build-system = [ python3Packages.poetry-core ];
dependencies = with python3Packages; [
posthog posthog
pyperclip pyperclip
requests requests