python3Packages.riscv-config: init at 3.5.0

This commit is contained in:
GenericNerdyUsername 2023-01-27 13:11:57 +00:00
parent 8e11bd3d05
commit 0e6fa5a27b
No known key found for this signature in database
GPG key ID: 65BA194581245B15
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
, cerberus
, pyyaml
, ruamel-yaml
}:
buildPythonPackage rec {
pname = "riscv-config";
version = "3.5.0";
src = fetchFromGitHub {
owner = "riscv-software-src";
repo = pname;
rev = version;
hash = "sha256-HKmHrvOF4OOzoILrBJG46UOKow5gRxMcXXiI6f34dPc=";
};
propagatedBuildInputs = [ cerberus pyyaml ruamel-yaml ];
meta = with lib; {
homepage = "https://github.com/riscv/riscv-config";
description = "RISC-V configuration validator";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.bsd3;
};
}

View file

@ -10057,6 +10057,8 @@ self: super: with self; {
ripser = callPackage ../development/python-modules/ripser { };
riscv-config = callPackage ../development/python-modules/riscv-config { };
riscv-isac = callPackage ../development/python-modules/riscv-isac { };
rising = callPackage ../development/python-modules/rising { };