pycoin: expose cli via top-level entry

pycoin is a python crypto currency library,
which was added to nixpkgs python modules in
commit 2b11dcd789 .
However, it also brings some command line tools,
which may be accessed by building it as python application.
This commit adds the corresponding entry to `all-packages.nix`.
This commit is contained in:
Yarny0 2021-03-27 19:27:14 +01:00
parent ad47284f8b
commit 09b9030ebb

View File

@ -26886,6 +26886,8 @@ in
ethabi = callPackage ../applications/blockchains/ethabi.nix { };
pycoin = with python3Packages; toPythonApplication pycoin;
stellar-core = callPackage ../applications/blockchains/stellar-core.nix { };
sumokoin = callPackage ../applications/blockchains/sumokoin.nix { boost = boost165; };