opentimestamps-client: 0.5.1 -> 0.6.0

This commit is contained in:
Erik Arvstedt 2018-04-27 20:21:50 +02:00
parent 5c7b7c360b
commit 4e79f2fb42

View file

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