python311Packages.reportlab 3.6.13 -> 4.0.6 https://repology.org/project/python:reportlab/versions attrpath: python311Packages.reportlab 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/c7xf6hcjia60bn0n5l4fzs67rwvl7xyw-packages.json.drv building '/nix/store/c7xf6hcjia60bn0n5l4fzs67rwvl7xyw-packages.json.drv'... Going to be running update for following packages: - python3.11-reportlab-3.6.13 Press Enter key to continue... Running update for: - python3.11-reportlab-3.6.13: UPDATING ... - python3.11-reportlab-3.6.13: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/reportlab/default.nix b/pkgs/development/python-modules/reportlab/default.nix index 608debea5693..0966bc65be06 100644 --- a/pkgs/development/python-modules/reportlab/default.nix +++ b/pkgs/development/python-modules/reportlab/default.nix @@ -12,11 +12,11 @@ let ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; }); in buildPythonPackage rec { pname = "reportlab"; - version = "3.6.13"; + version = "4.0.6"; src = fetchPypi { inherit pname version; - hash = "sha256-b3XTP3o3IM9HNxq2PO0PDr0a622xk4aukviXegm+lhE="; + hash = "sha256-BpqjXafIgpIfQZ9uJjJ+FNrB2dCt60C1hM2t2XTZn8A="; }; patches = [ No auto update branch exists Old version 3.6.13" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , freetype , pillow , setuptools , glibcLocales , python , isPyPy }: let ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; }); in buildPythonPackage rec { pname = "reportlab"; version = "4.0.4"; format = "pyproject"; # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit disabled = isPyPy; src = fetchPypi { inherit pname version; hash = "sha256-f3CztWr/XxHLQTbFGg9aVv5uTI+7rHuQMHbbmajvMcE="; }; postPatch = '' # Remove all the test files that require access to the internet to pass. rm tests/test_lib_utils.py rm tests/test_platypus_general.py rm tests/test_platypus_images.py # Remove the tests that require Vera fonts installed rm tests/test_graphics_render.py rm tests/test_graphics_charts.py ''; nativeBuildInputs = [ setuptools ]; buildInputs = [ ft ]; propagatedBuildInputs = [ pillow ]; nativeCheckInputs = [ glibcLocales ]; checkPhase = '' runHook preCheck pushd tests LC_ALL="en_US.UTF-8" ${python.interpreter} runAll.py popd runHook postCheck ''; meta = with lib; { description = "An Open Source Python library for generating PDFs and graphics"; homepage = "http://www.reportlab.com/"; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }