Skip to content

Commit c887e4b

Browse files
authored
python313Packages.configshell: fix build (#388363)
2 parents 449d030 + 714a275 commit c887e4b

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
lib,
33
fetchFromGitHub,
44
buildPythonPackage,
5+
pythonOlder,
6+
hatchling,
7+
hatch-vcs,
58
pyparsing,
6-
six,
7-
urwid,
89
}:
910

1011
buildPythonPackage rec {
1112
pname = "configshell";
1213
version = "2.0.0";
13-
format = "setuptools";
14+
pyproject = true;
15+
16+
disabled = pythonOlder "3.9";
1417

1518
src = fetchFromGitHub {
1619
owner = "open-iscsi";
@@ -19,10 +22,13 @@ buildPythonPackage rec {
1922
hash = "sha256-lP3WT9ASEj6WiCrurSU/e9FhIaeoQW/n9hi1XZMnV4Q=";
2023
};
2124

22-
propagatedBuildInputs = [
25+
build-system = [
26+
hatchling
27+
hatch-vcs
28+
];
29+
30+
dependencies = [
2331
pyparsing
24-
six
25-
urwid
2632
];
2733

2834
# Module has no tests

0 commit comments

Comments
 (0)