diff options
author | Ludovic Courtès <[email protected]> | 2019-09-17 16:17:20 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2019-09-17 16:27:15 +0200 |
commit | 9ff87bb99614923fa3336ab4bbf22e3444709b48 (patch) | |
tree | fa169a6cc0fdc8d92bb4c4a4f265afc2ba29a890 /gnu/packages/game-development.scm | |
parent | ae71bef532d6b1c9d1481a3ac65827f148b1e45b (diff) | |
parent | 9e8e252026f558933bdd9cfc26a75d13954b3e8e (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 7eac935a69..bb4c1d26bb 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -314,6 +314,16 @@ provide connectivity for client applications written in any language.") (base32 "1pmvvm3sgnpngfa7884mqhq3fwdjh9sr0ca07ypnidcg0y341w53")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'fix-pillow + (lambda _ + ;; pillow's version is not in PIL.Image.VERSION anymore + (substitute* "nml/version_info.py" + (("from PIL import Image") "import PIL") + (("Image.VERSION") "PIL.__version__")) + #t))))) (propagated-inputs `(("python-pillow" ,python-pillow) ("python-ply" ,python-ply))) |