2017-07-30 19:38:42 +01:00
|
|
|
{ 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 = {
|
2017-08-17 22:51:32 +01:00
|
|
|
homepage = https://github.com/huwwp/cryptop;
|
2017-07-30 19:38:42 +01:00
|
|
|
description = "Command line Cryptocurrency Portfolio";
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
maintainers = with lib.maintainers; [ bhipple ];
|
|
|
|
};
|
|
|
|
}
|