at 22.05-pre 578 B view raw
1{ lib, python3Packages, fetchFromGitHub }: 2 3python3Packages.buildPythonApplication { 4 pname = "bashplotlib"; 5 version = "2019-01-02"; 6 7 src = fetchFromGitHub { 8 owner = "glamp"; 9 repo = "bashplotlib"; 10 rev = "f7533172c4dc912b5accae42edd5c0f655d7468f"; 11 sha256 = "1sifqslvvz2c05spwrl81kcdg792l6jwvfd3ih9q5wjkvkm0plz8"; 12 }; 13 14 # No tests 15 doCheck = false; 16 17 meta = with lib; { 18 homepage = "https://github.com/glamp/bashplotlib"; 19 description = "Plotting in the terminal"; 20 maintainers = with maintainers; [ dtzWill ]; 21 license = licenses.mit; 22 }; 23}