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