cryptop: add setuptools to fix crash

Without setuptools, cryptop crashes at runtime

+2 -2
+2 -2
pkgs/applications/blockchains/cryptop/default.nix
··· 1 - { lib, buildPythonApplication, fetchPypi, requests, requests-cache }: 2 3 buildPythonApplication rec { 4 pname = "cryptop"; ··· 9 sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb"; 10 }; 11 12 - propagatedBuildInputs = [ requests requests-cache ]; 13 14 # No tests in archive 15 doCheck = false;
··· 1 + { lib, buildPythonApplication, fetchPypi, requests, requests-cache, setuptools }: 2 3 buildPythonApplication rec { 4 pname = "cryptop"; ··· 9 sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb"; 10 }; 11 12 + propagatedBuildInputs = [ setuptools requests requests-cache ]; 13 14 # No tests in archive 15 doCheck = false;