Merge pull request #293827 from Stunkymonkey/command-runner-normalize

python312Packages.command-runner: rename from command_runner

authored by

Fabian Affolter and committed by
GitHub
3cf4a548 57c2ace2

+6 -4
+3 -2
pkgs/development/python-modules/command_runner/default.nix pkgs/development/python-modules/command-runner/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, psutil }: 2 2 3 3 buildPythonPackage rec { 4 - pname = "command_runner"; 4 + pname = "command-runner"; 5 5 version = "1.6.0"; 6 6 format = "setuptools"; 7 7 8 8 src = fetchPypi { 9 - inherit pname version; 9 + pname = "command_runner"; 10 + inherit version; 10 11 sha256 = "sha256-lzt1UhhrPqQrBKsRmPhqhtOIfFlCteQqo6sZ6rOut0A="; 11 12 }; 12 13
+1 -1
pkgs/servers/monitoring/librenms/default.nix
··· 45 45 redis 46 46 setuptools 47 47 psutil 48 - command_runner 48 + command-runner 49 49 ])) 50 50 ]; 51 51
+1
pkgs/top-level/python-aliases.nix
··· 85 85 cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09 86 86 codespell = throw "codespell has been promoted to a top-level attribute"; # Added 2022-10-02 87 87 ColanderAlchemy = colanderalchemy; # added 2023-02-19 88 + command_runner = command-runner; # added 2024-03-06 88 89 CommonMark = commonmark; # added 2023-02-1 89 90 ConfigArgParse = configargparse; # added 2021-03-18 90 91 coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
+1 -1
pkgs/top-level/python-packages.nix
··· 1935 1935 1936 1936 comicon = callPackage ../development/python-modules/comicon { }; 1937 1937 1938 - command_runner = callPackage ../development/python-modules/command_runner { }; 1938 + command-runner = callPackage ../development/python-modules/command-runner { }; 1939 1939 1940 1940 connect-box = callPackage ../development/python-modules/connect-box { }; 1941 1941