cryptop: add setuptools to fix crash

Without setuptools, cryptop crashes at runtime
launchpad/nixpkgs/master
matthewcroughan 3 years ago
parent 5bc8b980b9
commit 71c47ca244
  1. 4
      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;

Loading…
Cancel
Save