1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 6 setuptools, 7 8 six, 9 requests, 10 beautifulsoup4, 11}: 12 13buildPythonPackage rec { 14 pname = "feedfinder2"; 15 version = "0.0.4"; 16 pyproject = true; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-NwHuAabIX4uGWgScMLoLRgiFjIA/6OMNHSif2+idDv4="; 21 }; 22 23 build-system = [ setuptools ]; 24 25 dependencies = [ 26 six 27 requests 28 beautifulsoup4 29 ]; 30 31 # no tests 32 doCheck = false; 33 34 pythonImportsCheck = [ "feedfinder2" ]; 35 36 meta = with lib; { 37 description = "Python library for finding feed links on websites"; 38 homepage = "https://github.com/dfm/feedfinder2"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ vizid ]; 41 }; 42}