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.
2 parents 449d030 + 714a275 commit c887e4bCopy full SHA for c887e4b
pkgs/development/python-modules/configshell/default.nix
@@ -2,15 +2,18 @@
2
lib,
3
fetchFromGitHub,
4
buildPythonPackage,
5
+ pythonOlder,
6
+ hatchling,
7
+ hatch-vcs,
8
pyparsing,
- six,
- urwid,
9
}:
10
11
buildPythonPackage rec {
12
pname = "configshell";
13
version = "2.0.0";
- format = "setuptools";
14
+ pyproject = true;
15
+
16
+ disabled = pythonOlder "3.9";
17
18
src = fetchFromGitHub {
19
owner = "open-iscsi";
@@ -19,10 +22,13 @@ buildPythonPackage rec {
22
hash = "sha256-lP3WT9ASEj6WiCrurSU/e9FhIaeoQW/n9hi1XZMnV4Q=";
20
23
};
21
24
- propagatedBuildInputs = [
25
+ build-system = [
26
+ hatchling
27
+ hatch-vcs
28
+ ];
29
30
+ dependencies = [
31
pyparsing
- six
- urwid
32
];
33
34
# Module has no tests
0 commit comments