Merge pull request #124130 from prusnak/cocotb-21.05
[21.05] python3Packages.cocotb: 1.5.1 -> 1.5.2
This commit is contained in:
commit
1166a744e3
35
pkgs/development/python-modules/cocotb-bus/default.nix
Normal file
35
pkgs/development/python-modules/cocotb-bus/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cocotb-bus";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "cc9b0bb00c95061a67f650caf96e3a294bb74ef437124dea456dd9e2a9431854";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# remove circular dependency cocotb from setup.py
|
||||||
|
substituteInPlace setup.py --replace '"cocotb>=1.5.0.dev,<2.0"' ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
# tests require cocotb, disable for now to avoid circular dependency
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
# checkPhase = ''
|
||||||
|
# export PATH=$out/bin:$PATH
|
||||||
|
# make test
|
||||||
|
# '';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Pre-packaged testbenching tools and reusable bus interfaces for cocotb";
|
||||||
|
homepage = "https://github.com/cocotb/cocotb-bus";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ prusnak ];
|
||||||
|
};
|
||||||
|
}
|
@ -1,19 +1,31 @@
|
|||||||
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, setuptools, swig, verilog }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, setuptools
|
||||||
|
, setuptools-scm
|
||||||
|
, cocotb-bus
|
||||||
|
, pytest
|
||||||
|
, swig
|
||||||
|
, verilog
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cocotb";
|
pname = "cocotb";
|
||||||
version = "1.5.1";
|
version = "1.5.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
# - we need to use the tarball from PyPi
|
||||||
owner = pname;
|
# or the full git checkout (with .git)
|
||||||
repo = pname;
|
# - using fetchFromGitHub will cause a build failure,
|
||||||
rev = "v${version}";
|
# because it does not include required metadata
|
||||||
sha256 = "02bw2i03vd4rcvdk10qdjl2lbvvy81cn9qpr8vzq8cm9h45689mv";
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "9f4f3e6eb9caeb479e98d604770645b57469cd25b39e28df1916ffcd593efbe6";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
nativeBuildInputs = [ setuptools-scm ];
|
||||||
setuptools
|
|
||||||
];
|
buildInputs = [ setuptools ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs bin/*.py
|
patchShebangs bin/*.py
|
||||||
@ -25,16 +37,14 @@ buildPythonPackage rec {
|
|||||||
do
|
do
|
||||||
substituteInPlace $f --replace 'shell which' 'shell command -v'
|
substituteInPlace $f --replace 'shell which' 'shell command -v'
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# remove circular dependency cocotb-bus from setup.py
|
||||||
|
substituteInPlace setup.py --replace "'cocotb-bus<1.0'" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ swig verilog ];
|
checkInputs = [ cocotb-bus pytest swig verilog ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# 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'
|
|
||||||
|
|
||||||
export PATH=$out/bin:$PATH
|
export PATH=$out/bin:$PATH
|
||||||
make test
|
make test
|
||||||
'';
|
'';
|
||||||
|
@ -1483,6 +1483,8 @@ in {
|
|||||||
|
|
||||||
cocotb = callPackage ../development/python-modules/cocotb { };
|
cocotb = callPackage ../development/python-modules/cocotb { };
|
||||||
|
|
||||||
|
cocotb-bus = callPackage ../development/python-modules/cocotb-bus { };
|
||||||
|
|
||||||
codecov = callPackage ../development/python-modules/codecov { };
|
codecov = callPackage ../development/python-modules/codecov { };
|
||||||
|
|
||||||
codespell = callPackage ../development/python-modules/codespell { };
|
codespell = callPackage ../development/python-modules/codespell { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user