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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
577 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
2019-08-14 00:52:01 +03:00
python3Packages.buildPythonApplication {
2018-08-03 17:02:33 +03:00
pname = "bashplotlib";
2022-01-31 19:47:48 +03:00
version = "2021-03-31";
src = fetchFromGitHub {
owner = "glamp";
repo = "bashplotlib";
2022-01-31 19:47:48 +03:00
rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74";
sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c=";
};
# 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;
};
}