1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

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
This commit is contained in:
Benjamin Hipple 2017-12-09 14:54:27 -05:00
parent 8f4f9b6223
commit ef6e39fced

View file

@ -1,16 +1,16 @@
{ lib, python2}: { lib, python3 }:
python2.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "cryptop"; pname = "cryptop";
version = "0.1.0"; version = "0.2.0";
name = "${pname}-${version}"; name = "${pname}-${version}";
src = python2.pkgs.fetchPypi { src = python3.pkgs.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "00glnlyig1aajh30knc5rnfbamwfxpg29js2db6mymjmfka8lbhh"; sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
}; };
propagatedBuildInputs = [ python2.pkgs.requests ]; propagatedBuildInputs = [ python3.pkgs.requests python3.pkgs.requests-cache ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;