diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-18 10:08:30 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-18 11:23:47 -0400 |
commit | 661d79ad3237528bf450c43c37adfdedac493530 (patch) | |
tree | 1ac6238fa5f6511edc8b8dd42e1ef377e15fbefa | |
parent | edffb3554ff8cbe84c633445cb0df26ac1eae93f (diff) | |
download | guix-661d79ad3237528bf450c43c37adfdedac493530.tar.gz |
gnu: python-pillow/security-fixes: Make graft package private.
This fixes the tests/packages.scm test suite, which would have failed its 'fold-available-packages with/without cache' test case due two python-pillow packages having the same name/version. * gnu/packages/python-xyz.scm (python-pillow/security-fixes): Make private.
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 284f8019bb..6ea91a2719 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7871,7 +7871,7 @@ a general image processing tool.") "http://www.pythonware.com/products/pil/license.htm" "The PIL Software License")))) -(define-public python-pillow/security-fixes +(define python-pillow/security-fixes (package-with-patches python-pillow (search-patches "python-pillow-CVE-2022-45199.patch"))) |