mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
python312Packages.textual-dev: add missing dependency
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user