blob: 8234aee37ffd86980de9b5a6af449f8bb008e2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
}:
buildPythonPackage rec {
pname = "argcomplete";
version = "3.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "kislyuk";
repo = "argcomplete";
tag = "v${version}";
hash = "sha256-2o0gQtkQP9cax/8SUd9+65TwAIAjBYnI+ufuzZtrVyo=";
};
build-system = [
hatchling
hatch-vcs
];
# Tries to build and install test packages which fails
doCheck = false;
pythonImportsCheck = [ "argcomplete" ];
meta = {
description = "Bash tab completion for argparse";
homepage = "https://kislyuk.github.io/argcomplete/";
changelog = "https://github.com/kislyuk/argcomplete/blob/${src.tag}/Changes.rst";
downloadPage = "https://github.com/kislyuk/argcomplete";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ womfoo ];
};
}
|