summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2017-12-09 14:54:27 -0500
committerBenjamin Hipple <bhipple@protonmail.com>2017-12-09 14:59:27 -0500
commitef6e39fcedc6a51e380ff0aec599f4bcb849917a (patch)
treee3083dab6db19e2bb8c52c203089efc0602c019b /pkgs/applications/altcoins
parent8f4f9b62238da74bd3c78fe5708369d543c3e690 (diff)
downloadnixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar.gz
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar.bz2
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar.lz
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar.xz
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.tar.zst
nixlib-ef6e39fcedc6a51e380ff0aec599f4bcb849917a.zip
cryptop: 0.1 -> 0.2
Upgrade to new version. According to the upstream documentation, this project is
only tested on python3, so I've upgraded the pkg's interpreter as well.

Tested with nix-build and ./result/bin/cryptop
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/cryptop/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/altcoins/cryptop/default.nix b/pkgs/applications/altcoins/cryptop/default.nix
index 0136ab18ceac..05d5d8ee3625 100644
--- a/pkgs/applications/altcoins/cryptop/default.nix
+++ b/pkgs/applications/altcoins/cryptop/default.nix
@@ -1,16 +1,16 @@
-{ lib, python2}:
+{ lib, python3 }:
 
-python2.pkgs.buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "cryptop";
-  version = "0.1.0";
+  version = "0.2.0";
   name = "${pname}-${version}";
 
-  src = python2.pkgs.fetchPypi {
+  src = python3.pkgs.fetchPypi {
     inherit pname version;
-    sha256 = "00glnlyig1aajh30knc5rnfbamwfxpg29js2db6mymjmfka8lbhh";
+    sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
   };
 
-  propagatedBuildInputs = [ python2.pkgs.requests ];
+  propagatedBuildInputs = [ python3.pkgs.requests python3.pkgs.requests-cache ];
 
   # No tests in archive
   doCheck = false;