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

This commit is contained in:
Will Dietz 2018-05-17 16:16:26 -05:00 committed by xeji
parent 157eb22351
commit 3432fa3fd5
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
pname = "bashplotlib-${version}";
version = "2017-10-11";
src = fetchFromGitHub {
owner = "glamp";
repo = "bashplotlib";
rev = "fdc52be2c1fed13753692eced328143ab1db6f3d";
sha256 = "1ycql6j65zywyav2n3c0x1i5cm9w6glzqc3v0cgdvv1bdg4wi0gf";
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/glamp/bashplotlib;
description = "Plotting in the terminal";
maintainers = with maintainers; [ dtzWill ];
license = licenses.mit;
};
}

View File

@ -784,6 +784,8 @@ with pkgs;
basex = callPackage ../tools/text/xml/basex { };
bashplotlib = callPackage ../tools/misc/bashplotlib { };
babeld = callPackage ../tools/networking/babeld { };
badvpn = callPackage ../tools/networking/badvpn {};