2017-12-09 21:53:04 +01:00
|
|
|
{ lib, buildPythonApplication, fetchPypi, requests, requests-cache }:
|
2017-07-30 20:38:42 +02:00
|
|
|
|
2017-12-09 21:53:04 +01:00
|
|
|
buildPythonApplication rec {
|
2017-07-30 20:38:42 +02:00
|
|
|
pname = "cryptop";
|
2017-12-09 20:54:27 +01:00
|
|
|
version = "0.2.0";
|
2017-07-30 20:38:42 +02:00
|
|
|
|
2017-12-09 21:53:04 +01:00
|
|
|
src = fetchPypi {
|
2017-07-30 20:38:42 +02:00
|
|
|
inherit pname version;
|
2017-12-09 20:54:27 +01:00
|
|
|
sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
|
2017-07-30 20:38:42 +02:00
|
|
|
};
|
|
|
|
|
2017-12-09 21:53:04 +01:00
|
|
|
propagatedBuildInputs = [ requests requests-cache ];
|
2017-07-30 20:38:42 +02:00
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/huwwp/cryptop";
|
2017-07-30 20:38:42 +02:00
|
|
|
description = "Command line Cryptocurrency Portfolio";
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
maintainers = with lib.maintainers; [ bhipple ];
|
|
|
|
};
|
|
|
|
}
|