yosys: make building with Python binding the default

This commit is contained in:
Martin Povišer 2023-12-01 08:03:31 +01:00 committed by Austin Seipp
parent e55ea6167f
commit e61cf890d6
3 changed files with 1 additions and 3 deletions

View File

@ -19,7 +19,7 @@
, yosys-bluespec
, yosys-ghdl
, yosys-symbiflow
, enablePython ? false # enable python binding
, enablePython ? true # enable python binding
}:
# NOTE: as of late 2020, yosys has switched to an automation robot that

View File

@ -17414,7 +17414,6 @@ with pkgs;
yasm = callPackage ../development/compilers/yasm { };
yosys = callPackage ../development/compilers/yosys { };
yosysWithPython = callPackage ../development/compilers/yosys { enablePython = true; };
yosys-bluespec = callPackage ../development/compilers/yosys/plugins/bluespec.nix { };
yosys-ghdl = callPackage ../development/compilers/yosys/plugins/ghdl.nix { };
yosys-synlig = callPackage ../development/compilers/yosys/plugins/synlig.nix { };

View File

@ -16063,7 +16063,6 @@ self: super: with self; {
yosys = toPythonModule (pkgs.yosys.override {
python3 = python;
enablePython = true;
});
youless-api = callPackage ../development/python-modules/youless-api { };