pythonPackages.pymystem3: skip tests py2

This commit is contained in:
Jonathan Ringer 2020-08-15 16:20:32 -07:00
parent 0cde253727
commit dd235efed0
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ lib { lib
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, isPy3k
, requests , requests
, flake8 , flake8
, mock , mock
@ -19,6 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [ requests ];
checkInputs = [ flake8 mock pytest ]; checkInputs = [ flake8 mock pytest ];
doCheck = isPy3k; # fails on linting
postPatch = '' postPatch = ''
sed -i 's#^_mystem_info = .*#_mystem_info = ["${mystem}/bin", "${mystem}/bin/mystem"]#' pymystem3/constants.py sed -i 's#^_mystem_info = .*#_mystem_info = ["${mystem}/bin", "${mystem}/bin/mystem"]#' pymystem3/constants.py