diff options
Diffstat (limited to 'pkgs/default.nix')
| -rw-r--r-- | pkgs/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 2a40577..97fff36 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -24,4 +24,16 @@ in }) ]; }; + + override = { + python3 = prev.python3.override { + packageOverrides = nextPy: prevPy: { + cocotb = nextPy.callPackage ./cocotb { inherit (prevPy) cocotb; }; + cocotbext-wishbone = nextPy.callPackage ./cocotb/exts/wishbone.nix { }; + find-libpython = nextPy.callPackage ./find-libpython.nix { }; + hdl-convertor = nextPy.callPackage ./hdl-convertor { }; + hdl-convertor-ast = nextPy.callPackage ./hdl-convertor/ast.nix { }; + }; + }; + }; } |
