ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / markdownify / default.nix
blobcc5f3a36e85b6108a590141eba17c51b2156aaae
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     sha256 = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4=";
16   };
18   propagatedBuildInputs = [ beautifulsoup4 six ];
19   checkInputs = [ 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   };