summary refs log tree commit diff
path: root/pkgs/applications/altcoins/cryptop/default.nix
blob: 05d5d8ee362564f8ab41320bcc3663df4c8be68a (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, python3 }:

python3.pkgs.buildPythonApplication rec {
  pname = "cryptop";
  version = "0.2.0";
  name = "${pname}-${version}";

  src = python3.pkgs.fetchPypi {
    inherit pname version;
    sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
  };

  propagatedBuildInputs = [ python3.pkgs.requests python3.pkgs.requests-cache ];

  # No tests in archive
  doCheck = false;

  meta = {
    homepage = https://github.com/huwwp/cryptop;
    description = "Command line Cryptocurrency Portfolio";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ bhipple ];
  };
}