nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.reportlab: 4.4.1 -> 4.4.3

https://hg.reportlab.com/hg-public/reportlab/file/tip/CHANGES.md

This commit was automatically generated using update-python-libraries.

+6 -6
+6 -6
pkgs/development/python-modules/reportlab/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - chardet, 4 + charset-normalizer, 5 5 fetchPypi, 6 6 freetype, 7 7 pillow, ··· 17 17 in 18 18 buildPythonPackage rec { 19 19 pname = "reportlab"; 20 - version = "4.4.1"; 20 + version = "4.4.3"; 21 21 pyproject = true; 22 22 23 23 # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit ··· 25 25 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - hash = "sha256-X5ufwLekjokSwlzPadJrgpgKsNpxjk9YP6cg6Pj1Bz8="; 28 + hash = "sha256-BzsJddq2lTas0yUYWOawUk7T4IfnHx0NGJWstQrPnHs="; 29 29 }; 30 30 31 31 postPatch = '' ··· 39 39 rm tests/test_graphics_charts.py 40 40 ''; 41 41 42 - nativeBuildInputs = [ setuptools ]; 42 + build-system = [ setuptools ]; 43 43 44 44 buildInputs = [ ft ]; 45 45 46 - propagatedBuildInputs = [ 47 - chardet 46 + dependencies = [ 47 + charset-normalizer 48 48 pillow 49 49 ]; 50 50