Skip to content

Commit 684040c

Browse files
committed
python312Packages.textual-autocomplete: 3.0.0a13 -> 4.0.0a0
1 parent 2105ab7 commit 684040c

File tree

1 file changed

+14
-14
lines changed
  • pkgs/development/python-modules/textual-autocomplete

1 file changed

+14
-14
lines changed

pkgs/development/python-modules/textual-autocomplete/default.nix

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
11
{
22
lib,
3-
python3,
4-
fetchFromGitHub,
3+
buildPythonPackage,
4+
fetchPypi,
55
poetry-core,
66
textual,
77
typing-extensions,
88
hatchling,
99
}:
10-
python3.pkgs.buildPythonPackage rec {
11-
pname = "textual_autocomplete";
12-
version = "3.0.0a13";
10+
buildPythonPackage rec {
11+
pname = "textual-autocomplete";
12+
version = "4.0.0a0";
1313
pyproject = true;
1414

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

22-
nativeBuildInputs = [
21+
build-system = [
2322
poetry-core
2423
hatchling
2524
];
2625

27-
pythonRelaxDeps = true;
28-
2926
dependencies = [
3027
textual
3128
typing-extensions
@@ -36,9 +33,12 @@ python3.pkgs.buildPythonPackage rec {
3633
"typing_extensions"
3734
];
3835

36+
# No tests in the Pypi archive
37+
doCheck = false;
38+
3939
meta = {
4040
description = "Python library that provides autocomplete capabilities to textual";
41-
homepage = "https://pypi.org/project/textual-autocomplete";
41+
homepage = "https://github.com/darrenburns/textual-autocomplete";
4242
license = lib.licenses.mit;
4343
maintainers = with lib.maintainers; [ jorikvanveen ];
4444
};

0 commit comments

Comments
 (0)