From 71c47ca2449a3632e8093c9c4f4036a7b31eec59 Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Mon, 23 Aug 2021 09:14:46 +0100 Subject: [PATCH] cryptop: add setuptools to fix crash Without setuptools, cryptop crashes at runtime --- pkgs/applications/blockchains/cryptop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/blockchains/cryptop/default.nix b/pkgs/applications/blockchains/cryptop/default.nix index f0bcda579301..d93a10436fc3 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;