python312Packages.riscv-config: refactor

This commit is contained in:
Fabian Affolter 2024-04-12 14:33:50 +02:00
parent 5e43e4eb1b
commit da390f9631
1 changed files with 19 additions and 5 deletions

View File

@ -6,23 +6,37 @@
, pythonOlder
, pyyaml
, ruamel-yaml
, setuptools
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "riscv-config";
version = "3.18.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "riscv-software-src";
repo = pname;
repo = "riscv-config";
rev = "refs/tags/${version}";
hash = "sha256-lBjSHfnuNPi4Ks5ZCRLqJx3/l4GMmMEEIud8ZVl/S4Q=";
};
propagatedBuildInputs = [
pythonRelaxDeps = [
"pyyaml"
];
build-system = [
setuptools
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
cerberus
pyyaml
ruamel-yaml
@ -37,10 +51,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "RISC-V configuration validator";
mainProgram = "riscv-config";
homepage = "https://github.com/riscv/riscv-config";
changelog = "https://github.com/riscv-software-src/riscv-config/blob/${version}/CHANGELOG.md";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.bsd3;
maintainers = with maintainers; [ genericnerdyusername ];
mainProgram = "riscv-config";
};
}