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 Feb 10, 2023
1 parent 47edbbc commit 18df485
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/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3646,6 +3646,8 @@ self: super: with self; {

fusepy = callPackage ../development/python-modules/fusepy { };

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

future = callPackage ../development/python-modules/future { };

future-fstrings = callPackage ../development/python-modules/future-fstrings { };
Expand Down

0 comments on commit 18df485

Please sign in to comment.