Merge pull request #293827 from Stunkymonkey/command-runner-normalize
python312Packages.command-runner: rename from command_runner
This commit is contained in:
commit
3cf4a54820
4 changed files with 6 additions and 4 deletions
|
@ -1,12 +1,13 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, psutil }:
|
{ lib, buildPythonPackage, fetchPypi, psutil }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "command_runner";
|
pname = "command-runner";
|
||||||
version = "1.6.0";
|
version = "1.6.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "command_runner";
|
||||||
|
inherit version;
|
||||||
sha256 = "sha256-lzt1UhhrPqQrBKsRmPhqhtOIfFlCteQqo6sZ6rOut0A=";
|
sha256 = "sha256-lzt1UhhrPqQrBKsRmPhqhtOIfFlCteQqo6sZ6rOut0A=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -45,7 +45,7 @@ in phpPackage.buildComposerProject rec {
|
||||||
redis
|
redis
|
||||||
setuptools
|
setuptools
|
||||||
psutil
|
psutil
|
||||||
command_runner
|
command-runner
|
||||||
]))
|
]))
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,7 @@ mapAliases ({
|
||||||
cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09
|
cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09
|
||||||
codespell = throw "codespell has been promoted to a top-level attribute"; # Added 2022-10-02
|
codespell = throw "codespell has been promoted to a top-level attribute"; # Added 2022-10-02
|
||||||
ColanderAlchemy = colanderalchemy; # added 2023-02-19
|
ColanderAlchemy = colanderalchemy; # added 2023-02-19
|
||||||
|
command_runner = command-runner; # added 2024-03-06
|
||||||
CommonMark = commonmark; # added 2023-02-1
|
CommonMark = commonmark; # added 2023-02-1
|
||||||
ConfigArgParse = configargparse; # added 2021-03-18
|
ConfigArgParse = configargparse; # added 2021-03-18
|
||||||
coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
|
coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
|
||||||
|
|
|
@ -1935,7 +1935,7 @@ self: super: with self; {
|
||||||
|
|
||||||
comicon = callPackage ../development/python-modules/comicon { };
|
comicon = callPackage ../development/python-modules/comicon { };
|
||||||
|
|
||||||
command_runner = callPackage ../development/python-modules/command_runner { };
|
command-runner = callPackage ../development/python-modules/command-runner { };
|
||||||
|
|
||||||
connect-box = callPackage ../development/python-modules/connect-box { };
|
connect-box = callPackage ../development/python-modules/connect-box { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue