1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "drawille";
9 version = "0.2.0";
10
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-gVND4RYsWAUtTLZS75cPZ3Ht2QBC1UnsxuRTyXNqoa0=";
16 };
17
18 doCheck = false; # pypi package has no tests, git has no tags
19
20 pythonImportsCheck = [ "drawille" ];
21
22 meta = with lib; {
23 description = "Drawing in terminal with unicode braille characters";
24 homepage = "https://github.com/asciimoo/drawille";
25 license = licenses.agpl3Plus;
26 maintainers = with maintainers; [ nobbz ];
27 platforms = platforms.all;
28 };
29}