1{ lib, python3Packages, fetchFromGitHub }:
2
3python3Packages.buildPythonApplication {
4 pname = "bashplotlib";
5 version = "2021-03-31";
6
7 src = fetchFromGitHub {
8 owner = "glamp";
9 repo = "bashplotlib";
10 rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74";
11 sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c=";
12 };
13
14 # No tests
15 doCheck = false;
16
17 meta = with 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}