Merge pull request #135406 from MatthewCroughan/fix-cryptop

This commit is contained in:
Sandro 2021-08-23 10:33:53 +02:00 committed by GitHub
commit 282b1e682d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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