Skip to content

Commit

Permalink
python312Packages.textual-autocomplete: init at 3.0.0a12
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorik committed Nov 2, 2024
1 parent d3783c8 commit 52110e3
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/development/python-modules/textual-autocomplete/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
python3,
fetchPypi,
poetry-core,
textual,
typing-extensions,
}:
python3.pkgs.buildPythonPackage rec {
pname = "textual_autocomplete";
version = "3.0.0a12";
pyproject = true;

# Alpha versions of this packages are only available on Pypi for some reason
src = fetchPypi {
inherit pname version;
sha256 = "sha256-HSyeTSTH9XWryMYSy2q//0cG9qqrm5OVBrldroRUkwk=";
};

nativeBuildInputs = [ poetry-core ];

dependencies = [
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 @@ -15544,6 +15544,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 52110e3

Please sign in to comment.