about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/cryptop
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2021-08-23 09:14:46 +0100
committermatthewcroughan <matt@croughan.sh>2021-08-23 09:14:46 +0100
commit71c47ca2449a3632e8093c9c4f4036a7b31eec59 (patch)
tree396ce1ed508f3c268f0b33a1e333d18c22a9a195 /pkgs/applications/blockchains/cryptop
parent5bc8b980b9178ef9a4bb622320cf34e59ea2ea10 (diff)
cryptop: add setuptools to fix crash
Without setuptools, cryptop crashes at runtime
Diffstat (limited to 'pkgs/applications/blockchains/cryptop')
-rw-r--r--pkgs/applications/blockchains/cryptop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/cryptop/default.nix b/pkgs/applications/blockchains/cryptop/default.nix
index f0bcda5793013..d93a10436fc31 100644
--- a/pkgs/applications/blockchains/cryptop/default.nix
+++ b/pkgs/applications/blockchains/cryptop/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonApplication, fetchPypi, requests, requests-cache }:
+{ lib, buildPythonApplication, fetchPypi, requests, requests-cache, setuptools }:
 
 buildPythonApplication rec {
   pname = "cryptop";
@@ -9,7 +9,7 @@ buildPythonApplication rec {
     sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
   };
 
-  propagatedBuildInputs = [ requests requests-cache ];
+  propagatedBuildInputs = [ setuptools requests requests-cache ];
 
   # No tests in archive
   doCheck = false;