depot/third_party/nixpkgs/pkgs/development/python-modules/html-sanitizer/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

49 lines
910 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, beautifulsoup4
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "html-sanitizer";
version = "1.9.3";
src = fetchFromGitHub {
owner = "matthiask";
repo = pname;
rev = version;
hash = "sha256-1JSdi1PFM+N+UuEPfgWkOZw8S2PZ4ntadU0wnVJNnjw=";
};
propagatedBuildInputs = [
lxml
beautifulsoup4
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"html_sanitizer/tests.py"
];
disabledTests = [
# Tests are sensitive to output
"test_billion_laughs"
"test_10_broken_html"
];
pythonImportsCheck = [
"html_sanitizer"
];
meta = with lib; {
description = "Allowlist-based and very opinionated HTML sanitizer";
homepage = "https://github.com/matthiask/html-sanitizer";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}