1{ stdenv, python3Packages, fetchFromGitHub }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "bashplotlib";
5 version = "2017-10-11";
6
7 src = fetchFromGitHub {
8 owner = "glamp";
9 repo = "bashplotlib";
10 rev = "fdc52be2c1fed13753692eced328143ab1db6f3d";
11 sha256 = "1ycql6j65zywyav2n3c0x1i5cm9w6glzqc3v0cgdvv1bdg4wi0gf";
12 };
13
14 # No tests
15 doCheck = false;
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/glamp/bashplotlib;
19 description = "Plotting in the terminal";
20 maintainers = with maintainers; [ dtzWill ];
21 license = licenses.mit;
22 };
23}