python312Packages.configshell: rename to configshell-fb

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