Skip to content

Commit 8cc329f

Browse files
committed
python313Packages.help2man: refactor
1 parent c425e96 commit 8cc329f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pkgs/development/python-modules/help2man/default.nix

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
buildPythonPackage,
44
fetchFromGitHub,
55
pythonAtLeast,
6-
pythonOlder,
76
jinja2,
87
setuptools-scm,
98
shtab,
@@ -16,23 +15,21 @@ buildPythonPackage rec {
1615
version = "0.0.9";
1716
pyproject = true;
1817

19-
disabled = pythonOlder "3.9";
20-
2118
src = fetchFromGitHub {
2219
owner = "Freed-Wu";
2320
repo = "help2man";
2421
rev = version;
2522
hash = "sha256-BIDn+LQzBtDHUtFvIRL3NMXNouO3cMLibuYBoFtCUxI=";
2623
};
2724

28-
nativeBuildInputs = [
25+
build-system = [
2926
jinja2
3027
setuptools-scm
3128
shtab
3229
tomli
3330
];
3431

35-
propagatedBuildInputs = [ jinja2 ];
32+
dependencies = [ jinja2 ];
3633

3734
nativeCheckInputs = [ pytestCheckHook ];
3835

0 commit comments

Comments
 (0)