1{ lib
2, buildPythonPackage
3, fetchPypi
4, drawille
5, matplotlib
6}:
7
8buildPythonPackage rec {
9 pname = "drawilleplot";
10 version = "0.1.0";
11
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-ZEDroo7KkI2VxdESb2QDX+dPY4UahuuK9L0EddrxJjQ=";
17 };
18
19 doCheck = false; # does not have any tests at all
20
21 propagatedBuildInputs = [
22 drawille
23 matplotlib
24 ];
25
26 pythonImportsCheck = [
27 "drawilleplot"
28 ];
29
30 meta = with lib; {
31 description = "matplotlib backend for graph output in unicode terminals using drawille";
32 homepage = "https://github.com/gooofy/drawilleplot";
33 license = licenses.asl20;
34 maintainers = with maintainers; [ nobbz ];
35 platforms = platforms.all;
36 };
37}