We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c425e96 commit 8cc329fCopy full SHA for 8cc329f
pkgs/development/python-modules/help2man/default.nix
@@ -3,7 +3,6 @@
3
buildPythonPackage,
4
fetchFromGitHub,
5
pythonAtLeast,
6
- pythonOlder,
7
jinja2,
8
setuptools-scm,
9
shtab,
@@ -16,23 +15,21 @@ buildPythonPackage rec {
16
15
version = "0.0.9";
17
pyproject = true;
18
19
- disabled = pythonOlder "3.9";
20
-
21
src = fetchFromGitHub {
22
owner = "Freed-Wu";
23
repo = "help2man";
24
rev = version;
25
hash = "sha256-BIDn+LQzBtDHUtFvIRL3NMXNouO3cMLibuYBoFtCUxI=";
26
};
27
28
- nativeBuildInputs = [
+ build-system = [
29
jinja2
30
setuptools-scm
31
shtab
32
tomli
33
];
34
35
- propagatedBuildInputs = [ jinja2 ];
+ dependencies = [ jinja2 ];
36
37
nativeCheckInputs = [ pytestCheckHook ];
38
0 commit comments