summaryrefslogtreecommitdiff
path: root/pkgs/cocotb/exts/wishbone.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-06-11 20:12:29 -0600
committerAlejandro Soto <alejandro@34project.org>2023-06-11 20:12:29 -0600
commit07bf05a7869c88c27912833c1db942f8fc849f4d (patch)
treeb32a11e146884bcee04ef2dd5702b45e89699424 /pkgs/cocotb/exts/wishbone.nix
parent905a306a705fc7bf9f0d03945bfe692c530dd05e (diff)
pkgs: add existing derivations written for other projects
Diffstat (limited to 'pkgs/cocotb/exts/wishbone.nix')
-rw-r--r--pkgs/cocotb/exts/wishbone.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/cocotb/exts/wishbone.nix b/pkgs/cocotb/exts/wishbone.nix
new file mode 100644
index 0000000..5dd375b
--- /dev/null
+++ b/pkgs/cocotb/exts/wishbone.nix
@@ -0,0 +1,18 @@
+{ buildPythonPackage, cocotb, cocotb-bus, fetchFromGitHub, git, setuptools-scm }:
+buildPythonPackage {
+ pname = "cocotbext-wishbone";
+ version = "master-2022-04-26";
+
+ src = fetchFromGitHub {
+ repo = "cocotbext-wishbone";
+ owner = "wallento";
+
+ rev = "3c667834f41c3c40dd4647b5a7b9e4e71e1302c4";
+ sha256 = "sha256-vden1hZ9V1aqxFWu/vKmOfWfzINAopJRKTPKOpOiNkU=";
+
+ leaveDotGit = true;
+ };
+
+ nativeBuildInputs = [ git setuptools-scm ];
+ propagatedBuildInputs = [ cocotb cocotb-bus setuptools-scm ];
+}