My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/blockchains/cryptop/default.nix

23 lines
611 B

{ lib, buildPythonApplication, fetchPypi, requests, requests-cache, setuptools }:
buildPythonApplication rec {
pname = "cryptop";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
};
propagatedBuildInputs = [ setuptools requests 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 ];
};
}