nixpkgs-suyu/pkgs/development/python-modules/cocotb/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchFromGitHub, setuptools, swig, verilog }:
2019-10-17 16:24:02 +02:00
buildPythonPackage rec {
pname = "cocotb";
2021-03-24 18:41:47 +01:00
version = "1.5.1";
2019-10-17 16:24:02 +02:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-03-24 18:41:47 +01:00
sha256 = "02bw2i03vd4rcvdk10qdjl2lbvvy81cn9qpr8vzq8cm9h45689mv";
2019-10-17 16:24:02 +02:00
};
propagatedBuildInputs = [
setuptools
];
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
'';
checkInputs = [ swig verilog ];
checkPhase = ''
2020-10-11 20:49:46 +02:00
# test expected failures actually pass because of a fix in our icarus version
# https://github.com/cocotb/cocotb/issues/1952
substituteInPlace tests/test_cases/test_discovery/test_discovery.py \
--replace 'def access_single_bit' $'def foo(x): pass\ndef foo'
2020-10-11 20:49:46 +02:00
2019-10-17 16:24:02 +02:00
export PATH=$out/bin:$PATH
make test
'';
meta = with lib; {
2019-10-17 16:24:02 +02:00
description = "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
homepage = "https://github.com/cocotb/cocotb";
2019-10-17 16:24:02 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ matthuszagh ];
broken = stdenv.isDarwin;
2019-10-17 16:24:02 +02:00
};
}