bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
packaging,
|
|
tomli,
|
|
pytestCheckHook,
|
|
pip,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "argparse-manpage";
|
|
version = "4.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "praiskup";
|
|
repo = "argparse-manpage";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2GJDFLCaPTb8sQCAv9qZ+pIysFE7IaKh9co3Mb8Dutc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
packaging
|
|
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pip
|
|
];
|
|
|
|
disabledTests = [
|
|
# TypeError: dist must be a Distribution instance
|
|
"test_old_example"
|
|
"test_old_example_file_name"
|
|
];
|
|
|
|
pythonImportsCheck = [ "argparse_manpage" ];
|
|
|
|
passthru.optional-dependencies = {
|
|
setuptools = [ setuptools ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Automatically build man-pages for your Python project";
|
|
homepage = "https://github.com/praiskup/argparse-manpage";
|
|
changelog = "https://github.com/praiskup/argparse-manpage/blob/${src.rev}/NEWS";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
mainProgram = "argparse-manpage";
|
|
};
|
|
}
|