peakrdl: init at 1.5.0
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user