bashplotlib: init at 2017-10-11 (#40685)

authored by Will Dietz and committed by xeji 3432fa3f 157eb223

+25
+23
pkgs/tools/misc/bashplotlib/default.nix
··· 1 + { stdenv, pythonPackages, fetchFromGitHub }: 2 + 3 + pythonPackages.buildPythonApplication rec { 4 + pname = "bashplotlib-${version}"; 5 + version = "2017-10-11"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "glamp"; 9 + repo = "bashplotlib"; 10 + rev = "fdc52be2c1fed13753692eced328143ab1db6f3d"; 11 + sha256 = "1ycql6j65zywyav2n3c0x1i5cm9w6glzqc3v0cgdvv1bdg4wi0gf"; 12 + }; 13 + 14 + # No tests 15 + doCheck = false; 16 + 17 + meta = with stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 784 784 785 785 basex = callPackage ../tools/text/xml/basex { }; 786 786 787 + bashplotlib = callPackage ../tools/misc/bashplotlib { }; 788 + 787 789 babeld = callPackage ../tools/networking/babeld { }; 788 790 789 791 badvpn = callPackage ../tools/networking/badvpn {};