about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/markdownify/default.nix
blob: 19f84293800773d557c2a88e1c63822064061b6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, beautifulsoup4
, six
}:

buildPythonPackage rec {
  pname = "markdownify";
  version = "0.11.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4=";
  };

  propagatedBuildInputs = [ beautifulsoup4 six ];
  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "HTML to Markdown converter";
    mainProgram = "markdownify";
    homepage = "https://github.com/matthewwithanm/python-markdownify";
    license = licenses.mit;
    maintainers = [ maintainers.McSinyx ];
  };
}