Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / markdownify / default.nix
blob8b5942d61fa3501fad3a4008e0cd3ecae73cb420
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , beautifulsoup4
6 , six
7 }:
9 buildPythonPackage rec {
10   pname = "markdownify";
11   version = "0.11.6";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4=";
16   };
18   propagatedBuildInputs = [ beautifulsoup4 six ];
19   nativeCheckInputs = [ pytestCheckHook ];
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   };