fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
43 lines
892 B
Nix
43 lines
892 B
Nix
{
|
|
lib,
|
|
beautifulsoup4,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "markdownify";
|
|
version = "0.12.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-H7CMYYsw4O56MaObmY9EoY+yirJU9V9K8GttNaIXnic=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
beautifulsoup4
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "markdownify" ];
|
|
|
|
meta = with lib; {
|
|
description = "HTML to Markdown converter";
|
|
homepage = "https://github.com/matthewwithanm/python-markdownify";
|
|
changelog = "https://github.com/matthewwithanm/python-markdownify/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ McSinyx ];
|
|
mainProgram = "markdownify";
|
|
};
|
|
}
|