python310Packages.reportlab 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r55wf9yxfylkxgqd587n8fphcfgwhh79-packages.json.drv building '/nix/store/r55wf9yxfylkxgqd587n8fphcfgwhh79-packages.json.drv'... Going to be running update for following packages: - python3.10-reportlab-3.6.11 Press Enter key to continue... Running update for: - python3.10-reportlab-3.6.11: UPDATING ... - python3.10-reportlab-3.6.11: 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 7a58aaddaac..a84ed43c5c0 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.11"; + version = "3.6.12"; src = fetchPypi { inherit pname version; - sha256 = "sha256-BPxEIPBUiBXQYj4DHIah9/PzAD5pnZr3FIdC4tcrAko="; + sha256 = "sha256-sTzr9OOXu6FFQrzQIzOLb/LBUaOhKqvKie7L+XLLNho="; }; patches = [ No auto update branch exists Old version 3.6.11" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , freetype , pillow , glibcLocales , python , isPyPy }: let ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; }); in buildPythonPackage rec { pname = "reportlab"; version = "3.6.12"; src = fetchPypi { inherit pname version; sha256 = "sha256-sTzr9OOXu6FFQrzQIzOLb/LBUaOhKqvKie7L+XLLNho="; }; patches = [ ./darwin-m1-compat.patch ]; checkInputs = [ glibcLocales ]; buildInputs = [ ft pillow ]; postPatch = '' substituteInPlace setup.py \ --replace "mif = findFile(d,'ft2build.h')" "mif = findFile('${lib.getDev ft}','ft2build.h')" # 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 ''; checkPhase = '' cd tests LC_ALL="en_US.UTF-8" ${python.interpreter} runAll.py ''; # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit disabled = isPyPy; meta = { description = "An Open Source Python library for generating PDFs and graphics"; homepage = "http://www.reportlab.com/"; }; }