depot/third_party/nixpkgs/pkgs/development/python-modules/markdownify/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

27 lines
584 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, beautifulsoup4
, six
}:
buildPythonPackage rec {
pname = "markdownify";
version = "0.11.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-AJskDgyfTI6vHQhWJdzUAR4S8PjOxV3t+epvdlXkm/4=";
};
propagatedBuildInputs = [ beautifulsoup4 six ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "HTML to Markdown converter";
homepage = "https://github.com/matthewwithanm/python-markdownify";
license = licenses.mit;
maintainers = [ maintainers.McSinyx ];
};
}