fusesoc: init at 2.2.1

This commit is contained in:
GenericNerdyUsername 2023-01-27 00:51:15 +00:00 committed by Sandro Jäckel
parent 286e27c139
commit 1ff2248885
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ buildPythonPackage
, fetchPypi
, lib
, verilog
, verilator
, gnumake
, gcc
, edalize
, fastjsonschema
, pyparsing
, pyyaml
, simplesat
, ipyxact
, setuptools-scm
}:
buildPythonPackage rec {
pname = "fusesoc";
version = "2.2.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-M36bXBgY8hR33AVDlHoH8PZJG2Bi0KOEI07IMns7R4w=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ edalize fastjsonschema pyparsing pyyaml simplesat ipyxact ];
pythonImportsCheck = [ "fusesoc" ];
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ verilog verilator gnumake ]}"];
meta = with lib; {
homepage = "https://github.com/olofk/fusesoc";
description = "A package manager and build tools for HDL code";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.bsd3;
};
}

View File

@ -2256,6 +2256,8 @@ with pkgs;
fuse-emulator = callPackage ../applications/emulators/fuse-emulator { };
fusesoc = python3Packages.callPackage ../tools/package-management/fusesoc { };
fw = callPackage ../tools/misc/fw {
inherit (darwin.apple_sdk.frameworks) Security;
};