python312Packages.textual-dev: add missing dependency

This commit is contained in:
Gaetan Lepage
2025-02-13 21:46:47 +01:00
parent 81024f9037
commit 87eeb667b5

View File

@@ -1,14 +1,19 @@
{
lib,
aiohttp,
buildPythonPackage,
click,
fetchFromGitHub,
msgpack,
# build-system
poetry-core,
pythonOlder,
# dependencies
aiohttp,
click,
msgpack,
textual,
textual-serve,
typing-extensions,
versionCheckHook,
}:
buildPythonPackage rec {
@@ -16,8 +21,6 @@ buildPythonPackage rec {
version = "1.7.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Textualize";
repo = "textual-dev";
@@ -32,6 +35,7 @@ buildPythonPackage rec {
click
msgpack
textual
textual-serve
typing-extensions
];
@@ -40,12 +44,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "textual_dev" ];
meta = with lib; {
meta = {
description = "Development tools for Textual";
homepage = "https://github.com/Textualize/textual-dev";
changelog = "https://github.com/Textualize/textual-dev/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ yannip ];
changelog = "https://github.com/Textualize/textual-dev/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ yannip ];
mainProgram = "textual";
};
}