1{
2 lib,
3 fetchFromGitHub,
4 buildPythonPackage,
5 pythonOlder,
6 hatchling,
7 hatch-vcs,
8 pyparsing,
9}:
10
11buildPythonPackage rec {
12 pname = "configshell-fb";
13 version = "2.0.2";
14 pyproject = true;
15
16 src = fetchFromGitHub {
17 owner = "open-iscsi";
18 repo = "configshell-fb";
19 tag = "v${version}";
20 hash = "sha256-B5VEihg97r8BsKJdk1+LGyKb64QC+u/3ftumFXYTn6s=";
21 };
22
23 build-system = [
24 hatchling
25 hatch-vcs
26 ];
27
28 dependencies = [
29 pyparsing
30 ];
31
32 # Module has no tests
33 doCheck = false;
34
35 pythonImportsCheck = [ "configshell" ];
36
37 meta = {
38 description = "Python library for building configuration shells";
39 homepage = "https://github.com/open-iscsi/configshell-fb";
40 changelog = "https://github.com/open-iscsi/configshell-fb/releases/tag/${src.tag}";
41 license = lib.licenses.asl20;
42 maintainers = [ ];
43 };
44}