python310Packages.bleach 0 -> 1 attrpath: python310Packages.bleach Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rmjgjaq01f0f8gx4pjagbjmg4zci9id9-packages.json.drv building '/nix/store/rmjgjaq01f0f8gx4pjagbjmg4zci9id9-packages.json.drv'... Going to be running update for following packages: - python3.10-bleach-6.0.0 Press Enter key to continue... Running update for: - python3.10-bleach-6.0.0: UPDATING ... - python3.10-bleach-6.0.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix index 901eb76417ff..60faad431b08 100644 --- a/pkgs/development/python-modules/bleach/default.nix +++ b/pkgs/development/python-modules/bleach/default.nix @@ -13,13 +13,13 @@ buildPythonPackage rec { pname = "bleach"; - version = "6.0.0"; + version = "6.1.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-GhqFwVleB9jbFMXwnwnmQzUCxRxZWXDtwJBVHw25lBQ="; + hash = "sha256-CjHxg3ljxB1Gu/EzG4d44TCOoHkdsDzE5zV7l89CqP4="; }; propagatedBuildInputs = [ No auto update branch exists Old version 6.0.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pytestCheckHook , six , html5lib , setuptools , tinycss2 , packaging , pythonOlder , webencodings }: buildPythonPackage rec { pname = "bleach"; version = "6.1.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-CjHxg3ljxB1Gu/EzG4d44TCOoHkdsDzE5zV7l89CqP4="; }; nativeBuildInputs = [ setuptools ]; 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"; changelog = "https://github.com/mozilla/bleach/blob/v${version}/CHANGES"; license = licenses.asl20; maintainers = with maintainers; [ prikhi ]; }; }