python3Packages.riscv-config: init at 3.5.0
This commit is contained in:
parent
8e11bd3d05
commit
0e6fa5a27b
28
pkgs/development/python-modules/riscv-config/default.nix
Normal file
28
pkgs/development/python-modules/riscv-config/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -10057,6 +10057,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
ripser = callPackage ../development/python-modules/ripser { };
|
ripser = callPackage ../development/python-modules/ripser { };
|
||||||
|
|
||||||
|
riscv-config = callPackage ../development/python-modules/riscv-config { };
|
||||||
|
|
||||||
riscv-isac = callPackage ../development/python-modules/riscv-isac { };
|
riscv-isac = callPackage ../development/python-modules/riscv-isac { };
|
||||||
|
|
||||||
rising = callPackage ../development/python-modules/rising { };
|
rising = callPackage ../development/python-modules/rising { };
|
||||||
|
Loading…
Reference in New Issue
Block a user