mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Merge pull request #259515 from natsukium/doq/update
doq: 0.9.1 -> 0.10.0; add some python-modules as dependencies
This commit is contained in:
commit
dedbb8394f
52
pkgs/development/python-modules/help2man/default.nix
Normal file
52
pkgs/development/python-modules/help2man/default.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, jinja2
|
||||
, setuptools-scm
|
||||
, shtab
|
||||
, tomli
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "help2man";
|
||||
version = "0.0.9";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Freed-Wu";
|
||||
repo = "help2man";
|
||||
rev = version;
|
||||
hash = "sha256-BIDn+LQzBtDHUtFvIRL3NMXNouO3cMLibuYBoFtCUxI=";
|
||||
};
|
||||
|
||||
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
nativeBuildInputs = [
|
||||
jinja2
|
||||
setuptools-scm
|
||||
shtab
|
||||
tomli
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jinja2
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "help2man" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Convert --help and --version to man page";
|
||||
homepage = "https://github.com/Freed-Wu/help2man";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ natsukium ];
|
||||
mainProgram = "help2man";
|
||||
};
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
, click
|
||||
, help2man
|
||||
, markdown-it-py
|
||||
, shtab
|
||||
, tomli
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "setuptools-generate";
|
||||
version = "0.0.6";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Freed-Wu";
|
||||
repo = "setuptools-generate";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-xDjxkWy/n0jStI9eLcM6WduyU9vGjtBOmJ86dpXjceQ=";
|
||||
};
|
||||
|
||||
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
help2man
|
||||
markdown-it-py
|
||||
shtab
|
||||
] ++ lib.optionals (pythonOlder "3.11") [
|
||||
tomli
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "setuptools_generate" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate shell completions and man page when building a python package";
|
||||
homepage = "https://github.com/Freed-Wu/setuptools-generate";
|
||||
changelog = "https://github.com/Freed-Wu/setuptools-generate/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ natsukium ];
|
||||
};
|
||||
}
|
@ -5,16 +5,21 @@
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "doq";
|
||||
version = "0.9.1";
|
||||
format = "setuptools";
|
||||
version = "0.10.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "heavenshell";
|
||||
repo = "py-doq";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-6ff7R/2Jo4jYm1hA70yopjklpKIMWlj7DH9eKxOlfgU=";
|
||||
hash = "sha256-iVu+5o8pZ5OhIzNItWbzUzqC3VQ6HCD7nP5gW/PVAMM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
setuptools
|
||||
setuptools-generate
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
jinja2
|
||||
parso
|
||||
@ -23,7 +28,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
|
||||
nativeCheckInputs = with python3.pkgs; [
|
||||
parameterized
|
||||
unittestCheckHook
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "doq" ];
|
||||
@ -34,5 +39,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||
changelog = "https://github.com/heavenshell/py-doq/releases/tag/${src.rev}";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ natsukium ];
|
||||
mainProgram = "doq";
|
||||
};
|
||||
}
|
||||
|
@ -4895,6 +4895,8 @@ self: super: with self; {
|
||||
|
||||
heatzypy = callPackage ../development/python-modules/heatzypy { };
|
||||
|
||||
help2man = callPackage ../development/python-modules/help2man { };
|
||||
|
||||
helpdev = callPackage ../development/python-modules/helpdev { };
|
||||
|
||||
helper = callPackage ../development/python-modules/helper { };
|
||||
@ -12645,6 +12647,8 @@ self: super: with self; {
|
||||
|
||||
setuptools-declarative-requirements = callPackage ../development/python-modules/setuptools-declarative-requirements { };
|
||||
|
||||
setuptools-generate = callPackage ../development/python-modules/setuptools-generate { };
|
||||
|
||||
setuptools-gettext = callPackage ../development/python-modules/setuptools-gettext { };
|
||||
|
||||
setuptools-git = callPackage ../development/python-modules/setuptools-git { };
|
||||
|
Loading…
Reference in New Issue
Block a user