From 09b9030ebb069804ddc64a018068b5e59f34fe92 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sat, 27 Mar 2021 19:27:14 +0100 Subject: [PATCH] pycoin: expose cli via top-level entry pycoin is a python crypto currency library, which was added to nixpkgs python modules in commit 2b11dcd789f60961473830b7202f9b44810a455c . 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`. --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 684d1f36db3..35b80c1c0ca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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; };