1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5, beautifulsoup4 6, six 7}: 8 9buildPythonPackage rec { 10 pname = "markdownify"; 11 version = "0.11.6"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4="; 16 }; 17 18 propagatedBuildInputs = [ beautifulsoup4 six ]; 19 checkInputs = [ pytestCheckHook ]; 20 21 meta = with lib; { 22 description = "HTML to Markdown converter"; 23 homepage = "https://github.com/matthewwithanm/python-markdownify"; 24 license = licenses.mit; 25 maintainers = [ maintainers.McSinyx ]; 26 }; 27}