about summary refs log tree commit diff
path: root/pkgs/tools/misc/bashplotlib
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-05-17 16:16:26 -0500
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-17 23:16:26 +0200
commit3432fa3fd5197f0cd2c723a1f14641e30ccb173d (patch)
treef737d3b5749a9c56cad89ad3e0f16c43d299f671 /pkgs/tools/misc/bashplotlib
parent157eb22351f9d0a9d8337b104ddb8bdb5ec4c01e (diff)
bashplotlib: init at 2017-10-11 (#40685)
Diffstat (limited to 'pkgs/tools/misc/bashplotlib')
-rw-r--r--pkgs/tools/misc/bashplotlib/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/misc/bashplotlib/default.nix b/pkgs/tools/misc/bashplotlib/default.nix
new file mode 100644
index 0000000000000..2757f5f3e215c
--- /dev/null
+++ b/pkgs/tools/misc/bashplotlib/default.nix
@@ -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;
+  };
+}