Commit 9305c76f authored by Jorik's avatar Jorik
Browse files

python312Packages.textual-autocomplete: init at 3.0.0a13

parent ff3c5a71
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{
  lib,
  python3,
  fetchFromGitHub,
  poetry-core,
  textual,
  typing-extensions,
  hatchling,
}:
python3.pkgs.buildPythonPackage rec {
  pname = "textual_autocomplete";
  version = "3.0.0a13";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "darrenburns";
    repo = "textual-autocomplete";
    rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b";
    hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=";
  };

  nativeBuildInputs = [
    poetry-core
    hatchling
  ];

  pythonRelaxDeps = true;

  dependencies = [
    textual
    typing-extensions
  ];

  pythonImportsCheck = [
    "textual"
    "typing_extensions"
  ];

  meta = {
    description = "Python library that provides autocomplete capabilities to textual";
    homepage = "https://pypi.org/project/textual-autocomplete";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ jorikvanveen ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -16005,6 +16005,8 @@ self: super: with self; {
  textual = callPackage ../development/python-modules/textual { };
  textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
  textual-dev = callPackage ../development/python-modules/textual-dev { };
  textual-fastdatatable = callPackage ../development/python-modules/textual-fastdatatable { };