3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.nmigen: relax pyvcd constraint

This commit is contained in:
Martin Weinelt 2021-10-10 20:05:19 +02:00
parent ea2360d3a6
commit 97a6cecf2e

View file

@ -55,7 +55,8 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace setup.py \
--replace "Jinja2~=2.11" "Jinja2>=2.11"
--replace "Jinja2~=2.11" "Jinja2>=2.11" \
--replace "pyvcd~=0.2.2" "pyvcd"
'';
pythonImportsCheck = [ "nmigen" ];