Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
640 B
Nix
24 lines
640 B
Nix
{ 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 ];
|
|
mainProgram = "cryptop";
|
|
};
|
|
}
|