diff options
Diffstat (limited to 'pkgs/development/python-modules/bleach/default.nix')
-rw-r--r-- | pkgs/development/python-modules/bleach/default.nix | 43 |
1 files changed, 18 insertions, 25 deletions
diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix index c1fb4d77e806..5adbde446d95 100644 --- a/pkgs/development/python-modules/bleach/default.nix +++ b/pkgs/development/python-modules/bleach/default.nix @@ -1,14 +1,15 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, six -, html5lib -, setuptools -, tinycss2 -, packaging -, pythonOlder -, webencodings +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + six, + html5lib, + setuptools, + tinycss2, + packaging, + pythonOlder, + webencodings, }: buildPythonPackage rec { @@ -23,9 +24,7 @@ buildPythonPackage rec { hash = "sha256-CjHxg3ljxB1Gu/EzG4d44TCOoHkdsDzE5zV7l89CqP4="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ html5lib @@ -35,27 +34,21 @@ buildPythonPackage rec { webencodings ]; - passthru.optional-dependencies = { - css = [ - tinycss2 - ]; + optional-dependencies = { + css = [ tinycss2 ]; }; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # Disable network tests "protocols" ]; - pythonImportsCheck = [ - "bleach" - ]; + pythonImportsCheck = [ "bleach" ]; meta = with lib; { - description = "An easy, HTML5, whitelisting HTML sanitizer"; + description = "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, |