python3Packages.html2text: switch to pytestCheckHook
This commit is contained in:
parent
b1a729198c
commit
84d2753953
@ -1,5 +1,8 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
{ lib
|
||||||
, pytest
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -14,15 +17,13 @@ buildPythonPackage rec {
|
|||||||
sha256 = "1y924clp2hiqg3a9437z808p29mqcx537j5fmz71plx8qrcm5jf9";
|
sha256 = "1y924clp2hiqg3a9437z808p29mqcx537j5fmz71plx8qrcm5jf9";
|
||||||
};
|
};
|
||||||
|
|
||||||
# python setup.py test is broken, use pytest
|
checkInputs = [ pytestCheckHook ];
|
||||||
checkInputs = [ pytest ];
|
|
||||||
checkPhase = ''
|
pythonImportsCheck = [ "html2text" ];
|
||||||
pytest
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Turn HTML into equivalent Markdown-structured text";
|
description = "Turn HTML into equivalent Markdown-structured text";
|
||||||
homepage = "https://github.com/Alir3z4/html2text/";
|
homepage = "https://github.com/Alir3z4/html2text/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Only;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user