nixpkgs/pkgs/tools/misc/bashplotlib/default.nix

24 lines
578 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
2019-08-13 21:52:01 +00:00
python3Packages.buildPythonApplication {
2018-08-03 14:02:33 +00:00
pname = "bashplotlib";
2019-02-13 06:44:44 +00:00
version = "2019-01-02";
src = fetchFromGitHub {
owner = "glamp";
repo = "bashplotlib";
2019-02-13 06:44:44 +00:00
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;
};
}