cryptop: add setuptools to fix crash

Without setuptools, cryptop crashes at runtime
This commit is contained in:
matthewcroughan
2021-08-23 09:14:46 +01:00
parent 5bc8b980b9
commit 71c47ca244
@@ -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;