summary refs log tree commit diff
path: root/pkgs/tools/misc/opentimestamps-client
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2018-04-27 20:21:50 +0200
committerErik Arvstedt <erik.arvstedt@gmail.com>2018-04-27 23:10:04 +0200
commit4e79f2fb42e54711b864a1f02cb54a2b2e653be2 (patch)
tree2ec3e346c9445a6861bf25575c3c3191b526f015 /pkgs/tools/misc/opentimestamps-client
parent5c7b7c360be8083cfcc57f7e377b01d8135f32c2 (diff)
downloadnixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar.gz
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar.bz2
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar.lz
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar.xz
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.tar.zst
nixpkgs-4e79f2fb42e54711b864a1f02cb54a2b2e653be2.zip
opentimestamps-client: 0.5.1 -> 0.6.0
Diffstat (limited to 'pkgs/tools/misc/opentimestamps-client')
-rw-r--r--pkgs/tools/misc/opentimestamps-client/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/misc/opentimestamps-client/default.nix b/pkgs/tools/misc/opentimestamps-client/default.nix
index a062aa992be..3fbd874503d 100644
--- a/pkgs/tools/misc/opentimestamps-client/default.nix
+++ b/pkgs/tools/misc/opentimestamps-client/default.nix
@@ -1,19 +1,21 @@
 { lib, buildPythonApplication, fetchFromGitHub, isPy3k
-, opentimestamps, GitPython, pysocks }:
+, opentimestamps, appdirs, GitPython, pysocks }:
 
 buildPythonApplication rec {
-  name = "opentimestamps-client-${version}";
-  version = "0.5.1";
+  pname = "opentimestamps-client";
+  version = "0.6.0";
   disabled = (!isPy3k);
 
+  # We can't use the pypi source because it doesn't include README.md which is
+  # needed in setup.py
   src = fetchFromGitHub {
     owner = "opentimestamps";
     repo = "opentimestamps-client";
-    rev = "opentimestamps-client-v0.5.1";
-    sha256 = "0s549xkb75r5wyvjlfmac8a1df6w0y55l98f492zsihdns1d6rzq";
+    rev = "opentimestamps-client-v${version}";
+    sha256 = "05m8nllqad3k69mvby5q08y22i0wrj84gqifdgcldimrrn1i00xp";
   };
 
-  propagatedBuildInputs = [ opentimestamps GitPython pysocks ];
+  propagatedBuildInputs = [ opentimestamps appdirs GitPython pysocks ];
 
   meta = {
     description = "Command-line tool to create and verify OpenTimestamps proofs";