1{
2 lib,
3 python3Packages,
4 fetchFromGitHub,
5 nix-update-script,
6}:
7
8python3Packages.buildPythonApplication {
9 pname = "bashplotlib";
10 version = "0.6.5-unstable-2021-03-31";
11 format = "pyproject";
12
13 src = fetchFromGitHub {
14 owner = "glamp";
15 repo = "bashplotlib";
16 rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74";
17 sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c=";
18 };
19
20 build-system = with python3Packages; [
21 setuptools
22 ];
23
24 passthru.updateScript = nix-update-script { };
25
26 # No tests
27 doCheck = false;
28
29 meta = {
30 homepage = "https://github.com/glamp/bashplotlib";
31 description = "Plotting in the terminal";
32 maintainers = with lib.maintainers; [ dtzWill ];
33 license = lib.licenses.mit;
34 };
35}