forked from mirrors/nixpkgs
python3Packages.tinycss2: fix build
This commit is contained in:
parent
84066b0a4f
commit
b169bfc9e2
|
@ -36,6 +36,11 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ];
|
checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ];
|
||||||
|
|
||||||
|
# https://github.com/PyCQA/pycodestyle/issues/598
|
||||||
|
preCheck = ''
|
||||||
|
printf "[flake8]\nignore=W504,E741,E126" >> setup.cfg
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Low-level CSS parser for Python";
|
description = "Low-level CSS parser for Python";
|
||||||
homepage = "https://github.com/Kozea/tinycss2";
|
homepage = "https://github.com/Kozea/tinycss2";
|
||||||
|
|
Loading…
Reference in a new issue