nixpkgs/pkgs/development/python-modules/shtab/default.nix
2024-05-22 17:32:03 +02:00

54 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-timeout,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
bashInteractive,
}:
buildPythonPackage rec {
pname = "shtab";
version = "1.7.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "iterative";
repo = "shtab";
rev = "refs/tags/v${version}";
hash = "sha256-8bAwLSdJCzFw5Vf9CKBrH5zOoojeXds7aIRncl+sLBI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov=shtab --cov-report=term-missing --cov-report=xml" ""
'';
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
bashInteractive
pytest-timeout
pytestCheckHook
];
pythonImportsCheck = [ "shtab" ];
meta = with lib; {
description = "Module for shell tab completion of Python CLI applications";
mainProgram = "shtab";
homepage = "https://docs.iterative.ai/shtab/";
changelog = "https://github.com/iterative/shtab/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}