Skip to content

Commit

Permalink
python312Packages.textual-autocomplete: init at 3.0.0a13
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorik committed Jan 6, 2025
1 parent 454add2 commit 18df78f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/development/python-modules/textual-autocomplete/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
python3,
fetchPypi,
poetry-core,
textual,
typing-extensions,
hatchling
}:
python3.pkgs.buildPythonPackage rec {
pname = "textual_autocomplete";
version = "3.0.0a13";
pyproject = true;

# Alpha versions of this packages are only available on Pypi for some reason
src = fetchPypi {
inherit pname version;
hash = "sha256-21pK6VbdfW3s5T9/aV6X8qt1gZ3Za4ocBk7Flms6sRM=";
};

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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 18df78f

Please sign in to comment.