~ruther/vhdl-spi-2

vhdl-spi-2/hdl_spi/manifest.scm -rw-r--r-- 2.0 KiB
330f5837 — Rutherther docs: add readme 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(use-modules
 ((guix licenses) #:prefix license:)
 (guix packages)
 (guix download)
 (guix git-download)
 (gnu packages python-build)
 (guix build-system python)
 (guix build-system pyproject))

(define-public python-find-libpython
  (package
    (name "python-find-libpython")
    (version "0.4.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "find_libpython" version))
       (sha256
        (base32 "1rh3dj81qwl1v7ckni12abgw2hbag79xx4km5lxmdnvx776wvya6"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-setuptools python-wheel))
    (home-page "https://github.com/ktbarrett/find_libpython")
    (synopsis
     "Finds the libpython associated with your environment, wherever it may be hiding")
    (description
     "Finds the libpython associated with your environment, wherever it may be hiding.")
    (license license:expat)))

(define-public python-cocotb
  (package
    (name "python-cocotb")
    (version "1.9.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
	      (url "https://github.com/cocotb/cocotb")
        (commit "d4aa1e1a0560a60daa401610db5211fb7c5bcf97")))
       (sha256
	 (base32 "11ap161qs6b9fm3wakicg3d0x2bgnvx8lir6911vzrp2m2dij0d8"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-find-libpython))
    (native-inputs (list python-setuptools python-wheel))
    (arguments
     `(#:tests? #f))
    (home-page "https://www.cocotb.org")
    (synopsis
     "cocotb is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.")
    (description
     "cocotb is a coroutine based cosimulation library for writing VHDL and Verilog
testbenches in Python.")
    (license license:bsd-3)))

(concatenate-manifests
 (list
  (packages->manifest
   (list python-cocotb))

  (specifications->manifest
   (list
    "python-pytest"
    "python"
    "python-pudb"
    "python-pytest-pudb"
    "vhdl-ls"
    "make"

    ;; "ghdl"
    "gtkwave"))))
Do not follow this link