python312Packages.configshell: rename to configshell-fb

+10 -10
+1 -1
pkgs/by-name/nv/nvmet-cli/package.nix
··· 15 16 buildInputs = with python3Packages; [ nose2 ]; 17 18 - propagatedBuildInputs = with python3Packages; [ configshell ]; 19 20 # This package requires the `nvmet` kernel module to be loaded for tests. 21 doCheck = false;
··· 15 16 buildInputs = with python3Packages; [ nose2 ]; 17 18 + propagatedBuildInputs = with python3Packages; [ configshell-fb ]; 19 20 # This package requires the `nvmet` kernel module to be loaded for tests. 21 doCheck = false;
+1 -1
pkgs/by-name/sp/spdk/package.nix
··· 64 ]; 65 66 propagatedBuildInputs = [ 67 - python3.pkgs.configshell 68 ]; 69 70 postPatch = ''
··· 64 ]; 65 66 propagatedBuildInputs = [ 67 + python3.pkgs.configshell-fb 68 ]; 69 70 postPatch = ''
+1 -1
pkgs/by-name/ta/targetcli-fb/package.nix
··· 32 buildInputs = [ glib ]; 33 34 dependencies = with python3Packages; [ 35 - configshell 36 rtslib-fb 37 pygobject3 38 ];
··· 32 buildInputs = [ glib ]; 33 34 dependencies = with python3Packages; [ 35 + configshell-fb 36 rtslib-fb 37 pygobject3 38 ];
+5 -6
pkgs/development/python-modules/configshell/default.nix pkgs/development/python-modules/configshell-fb/default.nix
··· 9 }: 10 11 buildPythonPackage rec { 12 - pname = "configshell"; 13 version = "2.0.0"; 14 pyproject = true; 15 16 - disabled = pythonOlder "3.9"; 17 - 18 src = fetchFromGitHub { 19 owner = "open-iscsi"; 20 - repo = "${pname}-fb"; 21 tag = "v${version}"; 22 hash = "sha256-lP3WT9ASEj6WiCrurSU/e9FhIaeoQW/n9hi1XZMnV4Q="; 23 }; ··· 36 37 pythonImportsCheck = [ "configshell" ]; 38 39 - meta = with lib; { 40 description = "Python library for building configuration shells"; 41 homepage = "https://github.com/open-iscsi/configshell-fb"; 42 - license = licenses.asl20; 43 maintainers = [ ]; 44 }; 45 }
··· 9 }: 10 11 buildPythonPackage rec { 12 + pname = "configshell-fb"; 13 version = "2.0.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "open-iscsi"; 18 + repo = "configshell-fb"; 19 tag = "v${version}"; 20 hash = "sha256-lP3WT9ASEj6WiCrurSU/e9FhIaeoQW/n9hi1XZMnV4Q="; 21 }; ··· 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/v${version}"; 41 + license = lib.licenses.asl20; 42 maintainers = [ ]; 43 }; 44 }
+1
pkgs/top-level/python-aliases.nix
··· 135 command_runner = command-runner; # added 2024-03-06 136 CommonMark = commonmark; # added 2023-02-1 137 ConfigArgParse = configargparse; # added 2021-03-18 138 coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04 139 covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20 140 cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21
··· 135 command_runner = command-runner; # added 2024-03-06 136 CommonMark = commonmark; # added 2023-02-1 137 ConfigArgParse = configargparse; # added 2021-03-18 138 + configshell = configshell-fb; # added 2025-03-14 139 coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04 140 covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20 141 cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21
+1 -1
pkgs/top-level/python-packages.nix
··· 2650 2651 configparser = callPackage ../development/python-modules/configparser { }; 2652 2653 - configshell = callPackage ../development/python-modules/configshell { }; 2654 2655 configupdater = callPackage ../development/python-modules/configupdater { }; 2656
··· 2650 2651 configparser = callPackage ../development/python-modules/configparser { }; 2652 2653 + configshell-fb = callPackage ../development/python-modules/configshell-fb { }; 2654 2655 configupdater = callPackage ../development/python-modules/configupdater { }; 2656