about summary refs log tree commit diff
path: root/pkgs/applications/altcoins/cryptop/default.nix
blob: 33853f150cb627c758b98d1f1f7b7efc216a2156 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}