summary refs log tree commit diff
path: root/pkgs/tools/misc/bashplotlib/default.nix
blob: cc3476f598b7d6bf508aa912ad602205fbc5e4d8 (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
{ lib, 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 lib; {
    homepage = "https://github.com/glamp/bashplotlib";
    description = "Plotting in the terminal";
    maintainers = with maintainers; [ dtzWill ];
    license = licenses.mit;
  };
}