mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +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,
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue