Merge pull request #32522 from bhipple/python-cryptop-0.2

cryptop: 0.1 -> 0.2
This commit is contained in:
Orivej Desh 2017-12-09 20:59:15 +00:00 committed by GitHub
commit d61b1cee5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -1,16 +1,15 @@
{ lib, python2}: { lib, buildPythonApplication, fetchPypi, requests, requests-cache }:
python2.pkgs.buildPythonApplication rec { buildPythonApplication rec {
pname = "cryptop"; pname = "cryptop";
version = "0.1.0"; version = "0.2.0";
name = "${pname}-${version}";
src = python2.pkgs.fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "00glnlyig1aajh30knc5rnfbamwfxpg29js2db6mymjmfka8lbhh"; sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
}; };
propagatedBuildInputs = [ python2.pkgs.requests ]; propagatedBuildInputs = [ requests requests-cache ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;

View file

@ -1,4 +1,4 @@
{ callPackage, boost155, boost162, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2 }: { callPackage, boost155, boost162, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:
rec { rec {
@ -20,6 +20,8 @@ rec {
btc1 = callPackage ./btc1.nix { withGui = true; }; btc1 = callPackage ./btc1.nix { withGui = true; };
btc1d = callPackage ./btc1.nix { withGui = false; }; btc1d = callPackage ./btc1.nix { withGui = false; };
cryptop = python3.pkgs.callPackage ./cryptop { };
dashpay = callPackage ./dashpay.nix { }; dashpay = callPackage ./dashpay.nix { };
dogecoin = callPackage ./dogecoin.nix { withGui = true; }; dogecoin = callPackage ./dogecoin.nix { withGui = true; };

View file

@ -13910,8 +13910,7 @@ with pkgs;
altcoins = recurseIntoAttrs ( callPackage ../applications/altcoins { } ); altcoins = recurseIntoAttrs ( callPackage ../applications/altcoins { } );
bitcoin = altcoins.bitcoin; bitcoin = altcoins.bitcoin;
bitcoin-xt = altcoins.bitcoin-xt; bitcoin-xt = altcoins.bitcoin-xt;
cryptop = altcoins.cryptop;
cryptop = callPackage ../applications/altcoins/cryptop { };
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix { libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
secp256k1 = secp256k1.override { enableECDH = true; }; secp256k1 = secp256k1.override { enableECDH = true; };