2018-08-03 15:02:33 +01:00
|
|
|
{ stdenv, python3Packages, fetchFromGitHub }:
|
2018-05-17 22:16:26 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
python3Packages.buildPythonApplication {
|
2018-08-03 15:02:33 +01:00
|
|
|
pname = "bashplotlib";
|
2019-02-13 06:44:44 +00:00
|
|
|
version = "2019-01-02";
|
2018-05-17 22:16:26 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "glamp";
|
|
|
|
repo = "bashplotlib";
|
2019-02-13 06:44:44 +00:00
|
|
|
rev = "f7533172c4dc912b5accae42edd5c0f655d7468f";
|
|
|
|
sha256 = "1sifqslvvz2c05spwrl81kcdg792l6jwvfd3ih9q5wjkvkm0plz8";
|
2018-05-17 22:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
};
|
|
|
|
}
|