depot/third_party/nixpkgs/pkgs/applications/blockchains/cryptop/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
588 B
Nix

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