1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 16:40:12 +00:00

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

View file

@ -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;