Files
nixpkgs/pkgs/development/python-modules/argcomplete/default.nix
T
Martin Weinelt 1f11abc8a8 python3Packages.argcomplete: 3.6.2 -> 3.6.3
https://github.com/kislyuk/argcomplete/blob/v3.6.3/Changes.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 16:41:40 +01:00

40 lines
879 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
}:
buildPythonPackage rec {
pname = "argcomplete";
version = "3.6.3";
pyproject = true;
src = fetchFromGitHub {
owner = "kislyuk";
repo = "argcomplete";
tag = "v${version}";
hash = "sha256-GK78gW54cFE0yXra56wG8LnBL9CLbf0TuIgxFwA9zZY=";
};
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 ];
};
}