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