1 { lib, buildPythonPackage, fetchPypi, pillow }:
3 buildPythonPackage rec {
10 sha256 = "49f2c1fd2b579c1fffbac1386a2670b3f6f475cc7ff6cc04d8b984888c2d9e1e";
13 propagatedBuildInputs = [ pillow ];
15 # error: invalid command 'test'
18 # Fix impurity. TODO: Do the font lookup using fontconfig instead of this
19 # manual method. Until that is fixed, we get this whenever we run aafigure:
20 # WARNING: font not found, using PIL default font
22 sed -i "s|/usr/share/fonts|/nonexisting-fonts-path|" aafigure/PILhelper.py
26 description = "ASCII art to image converter";
27 mainProgram = "aafigure";
28 homepage = "https://launchpad.net/aafigure/";
29 license = licenses.bsd2;
30 maintainers = with maintainers; [ bjornfor ];
31 platforms = platforms.unix;