From 031d627f6672a936a0148d0679d94a0e2830d97a Mon Sep 17 00:00:00 2001 From: Benjamin Hipple Date: Sun, 30 Jul 2017 14:38:42 -0400 Subject: cryptop: init at 0.1.0 This commit adds the python application cryptop, which is a small curses application for viewing cryptocurrency portfolio values. --- pkgs/applications/altcoins/cryptop/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/applications/altcoins/cryptop/default.nix (limited to 'pkgs/applications/altcoins') diff --git a/pkgs/applications/altcoins/cryptop/default.nix b/pkgs/applications/altcoins/cryptop/default.nix new file mode 100644 index 000000000000..33853f150cb6 --- /dev/null +++ b/pkgs/applications/altcoins/cryptop/default.nix @@ -0,0 +1,24 @@ +{ lib, python2}: + +python2.pkgs.buildPythonApplication rec { + pname = "cryptop"; + version = "0.1.0"; + name = "${pname}-${version}"; + + src = python2.pkgs.fetchPypi { + inherit pname version; + sha256 = "00glnlyig1aajh30knc5rnfbamwfxpg29js2db6mymjmfka8lbhh"; + }; + + propagatedBuildInputs = [ python2.pkgs.requests ]; + + # No tests in archive + doCheck = false; + + meta = { + homepage = "http://github.com/huwwp/cryptop"; + description = "Command line Cryptocurrency Portfolio"; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ bhipple ]; + }; +} -- cgit 1.4.1