mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-21 07:21:40 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, six
|
|
, html5lib
|
|
, setuptools
|
|
, tinycss2
|
|
, packaging
|
|
, pythonOlder
|
|
, webencodings
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bleach";
|
|
version = "5.0.1";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DQMlXEfrm9Lyaqm7fyEHcy5+j+GVyi9kcJ/POwpKCFw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
html5lib
|
|
packaging
|
|
setuptools
|
|
six
|
|
webencodings
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
css = [
|
|
tinycss2
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Disable network tests
|
|
"protocols"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"bleach"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An easy, HTML5, whitelisting HTML sanitizer";
|
|
longDescription = ''
|
|
Bleach is an HTML sanitizing library that escapes or strips markup and
|
|
attributes based on a white list. Bleach can also linkify text safely,
|
|
applying filters that Django's urlize filter cannot, and optionally
|
|
setting rel attributes, even on links already in the text.
|
|
|
|
Bleach is intended for sanitizing text from untrusted sources. If you
|
|
find yourself jumping through hoops to allow your site administrators
|
|
to do lots of things, you're probably outside the use cases. Either
|
|
trust those users, or don't.
|
|
'';
|
|
homepage = "https://github.com/mozilla/bleach";
|
|
downloadPage = "https://github.com/mozilla/bleach/releases";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ prikhi ];
|
|
};
|
|
}
|