nixpkgs/pkgs/applications/altcoins/cryptop/default.nix

24 lines
586 B
Nix
Raw Normal View History

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