depot/third_party/nixpkgs/pkgs/development/python-modules/html-sanitizer/default.nix
Default email 1ffc76754d Project import generated by Copybara.
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
2020-07-18 18:06:22 +02:00

21 lines
634 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, lxml, beautifulsoup4, pytest, pytestrunner }:
buildPythonPackage rec {
pname = "html-sanitizer";
version = "1.9.1";
src = fetchFromGitHub {
owner = "matthiask";
repo = pname;
rev = version;
sha256 = "0nnv34924r0yn01rwlk749j5ijy7yxyj302s1i57yjrkqr3zlvas";
};
propagatedBuildInputs = [ lxml beautifulsoup4 ];
meta = with lib; {
description = "An allowlist-based and very opinionated HTML sanitizer that can be used both for untrusted and trusted sources.";
homepage = "https://github.com/matthiask/html-sanitizer";
license = licenses.bsd3;
};
}