blob: 5f3bd7709dc12beeb494be22c38b88cd8bc0d238 (
plain)
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
|
{ buildPythonPackage
, cocotb
, fetchPypi
, lib
, python-constraint
, pyyaml
}:
let
pname = "cocotb-coverage";
version = "1.2.0";
in
buildPythonPackage {
inherit pname version;
src = fetchPypi {
inherit pname version;
hash = "sha256-CsCvWb6XrKSOuFKBdEKxXWQvDrSQX7qPvZ7j2mpANlw=";
};
propagatedBuildInputs = [
cocotb
python-constraint
pyyaml
];
meta = {
description = "Functional Coverage and Constrained Randomization Extensions for Cocotb";
homepage = "https://github.com/mciepluc/${pname}";
license = lib.licenses.bsd2;
};
}
|