1{ lib, buildPythonApplication, fetchPypi, requests, requests-cache, setuptools }:
2
3buildPythonApplication rec {
4 pname = "cryptop";
5 version = "0.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
10 };
11
12 propagatedBuildInputs = [ setuptools requests requests-cache ];
13
14 # No tests in archive
15 doCheck = false;
16
17 meta = {
18 homepage = "https://github.com/huwwp/cryptop";
19 description = "Command line Cryptocurrency Portfolio";
20 license = with lib.licenses; [ mit ];
21 maintainers = with lib.maintainers; [ bhipple ];
22 };
23}