python3Packages.peakrdl-cli: move from python3Packages.peakrdl

This makes the derivation name for peakrdl-cli consistent with that of
the project name in pyproject.toml.
This commit is contained in:
Jared Baur
2026-07-14 11:17:46 -07:00
parent 77b37b546a
commit a66fe2a0cc
3 changed files with 8 additions and 7 deletions
@@ -9,8 +9,8 @@
typing-extensions,
}:
buildPythonPackage rec {
pname = "peakrdl";
buildPythonPackage (finalAttrs: {
pname = "peakrdl-cli";
version = "1.5.0";
pyproject = true;
@@ -18,10 +18,10 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "SystemRDL";
repo = "PeakRDL";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-SqLhOzx0gUVG8k4ikNbx8p1vO/ZqTQ/KAtidRWM2SZI=";
};
sourceRoot = "${src.name}/peakrdl-cli";
sourceRoot = "${finalAttrs.src.name}/peakrdl-cli";
build-system = [
setuptools
@@ -42,4 +42,4 @@ buildPythonPackage rec {
maintainers = [ lib.maintainers.jmbaur ];
mainProgram = "peakrdl";
};
}
})
+1
View File
@@ -417,6 +417,7 @@ mapAliases {
pathpy = throw "'pathpy' has been renamed to/replaced by 'path'"; # Converted to throw 2025-10-29
pcbnew-transition = throw "'pcbnew-transition' has been renamed to/replaced by 'pcbnewtransition'"; # Converted to throw 2025-10-29
pdfminer = throw "'pdfminer' has been renamed to/replaced by 'pdfminer-six'"; # Converted to throw 2025-10-29
peakrdl = throw "'peakrdl' has been renamed to/replaced by 'peakrdl-cli'"; # added 2026-07-14
pep257 = throw "'pep257' has been renamed to/replaced by 'pydocstyle'"; # Converted to throw 2025-10-29
percol = throw "percol has been removed because it hasn't been updated since 2019"; # added 2025-05-25
pilight = throw "'pilight' has been removed, because it is unmaintained since 2019 and the integration was removed from Home Assistant."; # added 2026-05-06
+2 -2
View File
@@ -12967,10 +12967,10 @@ self: super: with self; {
peacasso = callPackage ../development/python-modules/peacasso { };
peakrdl = callPackage ../development/python-modules/peakrdl { };
peakrdl-cheader = callPackage ../development/python-modules/peakrdl-cheader { };
peakrdl-cli = callPackage ../development/python-modules/peakrdl-cli { };
peakrdl-ipxact = callPackage ../development/python-modules/peakrdl-ipxact { };
peakrdl-markdown = callPackage ../development/python-modules/peakrdl-markdown { };