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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
python,
cocotb-bus,
find-libpython,
pytestCheckHook,
swig,
iverilog,
ghdl,
stdenv,
}:
buildPythonPackage rec {
pname = "cocotb";
version = "2.0.1";
format = "setuptools";
# pypi source doesn't include tests
src = fetchFromGitHub {
owner = "cocotb";
repo = "cocotb";
tag = "v${version}";
hash = "sha256-LXQNqFlvP+WBaDGWPs5+BXBtW2dhDu+v+7lR/AMG21M=";
};
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ setuptools ];
propagatedBuildInputs = [ find-libpython ];
postPatch = ''
patchShebangs bin/*.py
# POSIX portability (TODO: upstream this)
for f in \
cocotb/share/makefiles/Makefile.* \
cocotb/share/makefiles/simulators/Makefile.*
do
substituteInPlace $f --replace 'shell which' 'shell command -v'
done
# remove circular dependency cocotb-bus from setup.py
substituteInPlace setup.py --replace "'cocotb-bus<1.0'" ""
'';
# cocotb uses dlopen so that it's dynamic libraries are python version agnostic.
# Here we patch its dynamic libraries to make sure the correct libpython is found and used.
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
for lib in $out/lib/python*/site-packages/cocotb/libs/*.so; do
patchelf --add-rpath ${python}/lib --add-needed libpython3.so $lib
done
'';
disabledTests = [
# https://github.com/cocotb/cocotb/commit/425e1edb8e7133f4a891f2f87552aa2748cd8d2c#diff-4df986cbc2b1a3f22172caea94f959d8fcb4a128105979e6e99c68139469960cL33
"test_cocotb"
"test_cocotb_parallel"
];
nativeCheckInputs = [
cocotb-bus
pytestCheckHook
swig
iverilog
ghdl
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
pythonImportsCheck = [ "cocotb" ];
meta = {
changelog = "https://github.com/cocotb/cocotb/releases/tag/v${version}";
description = "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
mainProgram = "cocotb-config";
homepage = "https://github.com/cocotb/cocotb";
license = lib.licenses.bsd3;
broken = stdenv.hostPlatform.isDarwin;
maintainers = with lib.maintainers; [
matthuszagh
jleightcap
];
};
}
|