Skip to content

Commit

Permalink
python3Packages.fusesoc: init at 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GenericNerdyUsername committed Apr 26, 2023
1 parent e18ad60 commit 9b7e3e4
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/fusesoc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ buildPythonPackage
, fetchPypi
, lib
, verilog
, verilator
, gnumake
, gcc
, edalize
, pyparsing
, pyyaml
, simplesat
, ipyxact
, setuptools-scm
}:
buildPythonPackage rec {
pname = "fusesoc";
version = "1.12.0";

propagatedBuildInputs = [ edalize pyparsing pyyaml simplesat ipyxact verilog verilator gnumake gcc ];
nativeBuildInputs = [ setuptools-scm ];

src = fetchPypi {
inherit pname version;
hash = "sha256-hHDBQmCxcdwEtbisqOSB78fE3TkLv4opcdTDMHlWxYA=";
};

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;
};
}


2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,8 @@ with pkgs;

fuse-emulator = callPackage ../applications/emulators/fuse-emulator { };

fusesoc = python3Packages.callPackage ../development/python-modules/fusesoc { };

fw = callPackage ../tools/misc/fw {
inherit (darwin.apple_sdk.frameworks) Security;
};
Expand Down

0 comments on commit 9b7e3e4

Please sign in to comment.