-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python312Packages.textual-autocomplete: init at 3.0.0a12
- Loading branch information
Jorik
committed
Nov 2, 2024
1 parent
d3783c8
commit 59977a7
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
pkgs/development/python-modules/textual-autocomplete/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ 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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters