2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
2018-05-17 21:16:26 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
python3Packages.buildPythonApplication {
|
2018-08-03 14:02:33 +00:00
|
|
|
pname = "bashplotlib";
|
2022-01-31 16:47:48 +00:00
|
|
|
version = "2021-03-31";
|
2018-05-17 21:16:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "glamp";
|
|
|
|
repo = "bashplotlib";
|
2022-01-31 16:47:48 +00:00
|
|
|
rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74";
|
|
|
|
sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c=";
|
2018-05-17 21:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/glamp/bashplotlib";
|
2018-05-17 21:16:26 +00:00
|
|
|
description = "Plotting in the terminal";
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|