python312Packages.riscv-config: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 14:34:13 +02:00
parent da390f9631
commit 87c6aa9f54
1 changed files with 15 additions and 22 deletions

View File

@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, cerberus
, fetchFromGitHub
, fetchpatch
, pythonOlder
, pyyaml
, ruamel-yaml
, setuptools
, pythonRelaxDepsHook
{
lib,
buildPythonPackage,
cerberus,
fetchFromGitHub,
fetchpatch,
pythonOlder,
pyyaml,
ruamel-yaml,
setuptools,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
@ -24,17 +25,11 @@ buildPythonPackage rec {
hash = "sha256-lBjSHfnuNPi4Ks5ZCRLqJx3/l4GMmMEEIud8ZVl/S4Q=";
};
pythonRelaxDeps = [
"pyyaml"
];
pythonRelaxDeps = [ "pyyaml" ];
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
cerberus
@ -45,9 +40,7 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"riscv_config"
];
pythonImportsCheck = [ "riscv_config" ];
meta = with lib; {
description = "RISC-V configuration validator";