nixpkgs/pkgs/tools/misc/bashplotlib/default.nix
2021-01-25 18:31:47 +01:00

24 lines
578 B
Nix

{ lib, 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;
};
}