Commit 87eeb667 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.textual-dev: add missing dependency

parent 81024f90
Loading
Loading
Loading
Loading
+14 −10
Original line number Diff line number Diff line
{
  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";
  };
}