Skip to content

Commit

Permalink
python312Packages.textual-autocomplete: 3.0.0a13 -> 4.0.0a0
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored and gepbird committed Mar 11, 2025
1 parent ef8ec47 commit 78e6f7f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pkgs/development/python-modules/textual-autocomplete/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
{
lib,
python3,
fetchFromGitHub,
buildPythonPackage,
fetchPypi,
poetry-core,
textual,
typing-extensions,
hatchling,
}:
python3.pkgs.buildPythonPackage rec {
pname = "textual_autocomplete";
version = "3.0.0a13";
buildPythonPackage rec {
pname = "textual-autocomplete";
version = "4.0.0a0";
pyproject = true;

src = fetchFromGitHub {
owner = "darrenburns";
repo = "textual-autocomplete";
rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b";
hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=";
src = fetchPypi {
pname = "textual_autocomplete";
inherit version;
hash = "sha256-wsjmgODvFgfbyqxW3jsH88JC8z0TZQOChLgics7wAHY=";
};

nativeBuildInputs = [
build-system = [
poetry-core
hatchling
];

pythonRelaxDeps = true;

dependencies = [
textual
typing-extensions
Expand All @@ -36,6 +33,9 @@ python3.pkgs.buildPythonPackage rec {
"typing_extensions"
];

# No tests in the Pypi archive
doCheck = false;

meta = {
description = "Python library that provides autocomplete capabilities to textual";
homepage = "https://pypi.org/project/textual-autocomplete";
Expand Down

0 comments on commit 78e6f7f

Please sign in to comment.