Commit 988fef7f authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.configshell: rename to configshell-fb

parent 6e79d0d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec {

  buildInputs = with python3Packages; [ nose2 ];

  propagatedBuildInputs = with python3Packages; [ configshell ];
  propagatedBuildInputs = with python3Packages; [ configshell-fb ];

  # This package requires the `nvmet` kernel module to be loaded for tests.
  doCheck = false;
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
  ];

  propagatedBuildInputs = [
    python3.pkgs.configshell
    python3.pkgs.configshell-fb
  ];

  postPatch = ''
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ python3Packages.buildPythonApplication rec {
  buildInputs = [ glib ];

  dependencies = with python3Packages; [
    configshell
    configshell-fb
    rtslib-fb
    pygobject3
  ];
+5 −6
Original line number Diff line number Diff line
@@ -9,15 +9,13 @@
}:

buildPythonPackage rec {
  pname = "configshell";
  pname = "configshell-fb";
  version = "2.0.0";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "open-iscsi";
    repo = "${pname}-fb";
    repo = "configshell-fb";
    tag = "v${version}";
    hash = "sha256-lP3WT9ASEj6WiCrurSU/e9FhIaeoQW/n9hi1XZMnV4Q=";
  };
@@ -36,10 +34,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "configshell" ];

  meta = with lib; {
  meta = {
    description = "Python library for building configuration shells";
    homepage = "https://github.com/open-iscsi/configshell-fb";
    license = licenses.asl20;
    changelog = "https://github.com/open-iscsi/configshell-fb/releases/tag/v${version}";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -135,6 +135,7 @@ mapAliases ({
  command_runner = command-runner; # added 2024-03-06
  CommonMark = commonmark; # added 2023-02-1
  ConfigArgParse = configargparse; # added 2021-03-18
  configshell = configshell-fb; # added 2025-03-14
  coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
  covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20
  cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21
Loading