nixpkgs/pkgs/tools/misc/bashplotlib/default.nix
2020-04-10 17:54:53 +01:00

24 lines
588 B
Nix

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