peakrdl: init at 1.5.0

This commit is contained in:
Jared Baur
2025-12-13 18:06:45 -08:00
parent 7c0de18401
commit 3820520ea9
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
lib,
setuptools,
setuptools-scm,
systemrdl-compiler,
typing-extensions,
}:
buildPythonPackage rec {
pname = "peakrdl";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "SystemRDL";
repo = "PeakRDL";
tag = "v${version}";
hash = "sha256-SqLhOzx0gUVG8k4ikNbx8p1vO/ZqTQ/KAtidRWM2SZI=";
};
sourceRoot = "${src.name}/peakrdl-cli";
build-system = [
setuptools
setuptools-scm
];
dependencies = [
systemrdl-compiler
typing-extensions
];
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = {
description = "Control and status register code generator toolchain";
homepage = "https://peakrdl.readthedocs.io/";
license = lib.licenses.lgpl3;
maintainers = [ lib.maintainers.jmbaur ];
mainProgram = "peakrdl";
};
}
+2
View File
@@ -11870,6 +11870,8 @@ self: super: with self; {
peacasso = callPackage ../development/python-modules/peacasso { };
peakrdl = callPackage ../development/python-modules/peakrdl { };
peakutils = callPackage ../development/python-modules/peakutils { };
peaqevcore = callPackage ../development/python-modules/peaqevcore { };