mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #217477 from fabaff/ioccheck-fix
ioccheck: relax tabulate constraint
This commit is contained in:
commit
e7eb38736a
1 changed files with 3 additions and 2 deletions
|
@ -44,7 +44,7 @@ buildPythonApplication rec {
|
|||
owner = "ranguli";
|
||||
repo = pname;
|
||||
rev = "db02d921e2519b77523a200ca2d78417802463db";
|
||||
sha256 = "0lgqypcd5lzb2yqd5lr02pba24m26ghly4immxgz13svi8f6vzm9";
|
||||
hash = "sha256-qf5tHIpbj/BfrzUST+EzohKh1hUg09KwF+vT0tj1+FE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with py.pkgs; [
|
||||
|
@ -76,7 +76,8 @@ buildPythonApplication rec {
|
|||
--replace '"hurry.filesize" = "^0.9"' "" \
|
||||
--replace 'vt-py = ">=0.6.1,<0.8.0"' 'vt-py = ">=0.6.1"' \
|
||||
--replace 'backoff = "^1.10.0"' 'backoff = ">=1.10.0"' \
|
||||
--replace 'termcolor = "^1.1.0"' 'termcolor = "*"'
|
||||
--replace 'termcolor = "^1.1.0"' 'termcolor = "*"' \
|
||||
--replace 'tabulate = "^0.8.9"' 'tabulate = "*"'
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue