python3Packages.feedparser: fix build, run tests

This commit is contained in:
Bernardo Meurer 2020-12-04 11:49:58 -08:00 committed by Orivej Desh
parent d0e31655f9
commit fcbd213d38

View file

@ -1,19 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, sgmllib3k
}:
buildPythonPackage rec {
pname = "feedparser";
version = "6.0.2";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1b00a105425f492f3954fd346e5b524ca9cef3a4bbf95b8809470e9857aa1074";
};
# lots of networking failures
doCheck = false;
propagatedBuildInputs = [ sgmllib3k ];
checkPhase = ''
python -Wd tests/runtests.py
'';
meta = with stdenv.lib; {
homepage = "https://github.com/kurtmckee/feedparser";