mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
python312Packages.configshell: rename to configshell-fb
This commit is contained in:
parent
6e79d0d383
commit
988fef7fbf
6 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||
|
|
|
@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python3.pkgs.configshell
|
||||
python3.pkgs.configshell-fb
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
|
|
@ -32,7 +32,7 @@ python3Packages.buildPythonApplication rec {
|
|||
buildInputs = [ glib ];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
configshell
|
||||
configshell-fb
|
||||
rtslib-fb
|
||||
pygobject3
|
||||
];
|
||||
|
|
|
@ -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 = [ ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -2650,7 +2650,7 @@ self: super: with self; {
|
|||
|
||||
configparser = callPackage ../development/python-modules/configparser { };
|
||||
|
||||
configshell = callPackage ../development/python-modules/configshell { };
|
||||
configshell-fb = callPackage ../development/python-modules/configshell-fb { };
|
||||
|
||||
configupdater = callPackage ../development/python-modules/configupdater { };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue