mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
tftui: accept posthog 4 (#407112)
This commit is contained in:
commit
11e0819a5c
1 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue