Merge pull request #27778 from bhipple/feature/python-cryptop-init

pythonPackages.cryptop: init at 0.1.0
This commit is contained in:
Frederik Rietdijk 2017-07-30 22:43:36 +02:00 committed by GitHub
commit 38e81eae36
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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 = {
homepage = "http://github.com/huwwp/cryptop";
description = "Command line Cryptocurrency Portfolio";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ bhipple ];
};
}

View file

@ -13382,6 +13382,8 @@ with pkgs;
bitcoin = altcoins.bitcoin;
bitcoin-xt = altcoins.bitcoin-xt;
cryptop = callPackage ../applications/altcoins/cryptop { };
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
secp256k1 = secp256k1.override { enableECDH = true; };
};