summary refs log tree commit diff
path: root/pkgs/tools/misc/bashplotlib/default.nix
blob: 14ab790d9c7688fd30a6fd8db95cf1006767909d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, python3Packages, fetchFromGitHub }:

python3Packages.buildPythonApplication {
  pname = "bashplotlib";
  version = "2019-01-02";

  src = fetchFromGitHub {
    owner = "glamp";
    repo = "bashplotlib";
    rev = "f7533172c4dc912b5accae42edd5c0f655d7468f";
    sha256 = "1sifqslvvz2c05spwrl81kcdg792l6jwvfd3ih9q5wjkvkm0plz8";
  };

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/glamp/bashplotlib;
    description = "Plotting in the terminal";
    maintainers = with maintainers; [ dtzWill ];
    license = licenses.mit;
  };
}