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