1 { lib, buildPythonApplication, fetchFromGitHub, isPy3k
2 , opentimestamps, appdirs, GitPython, pysocks, fetchpatch, git
5 buildPythonApplication rec {
6 pname = "opentimestamps-client";
10 # We can't use the pypi source because it doesn't include README.md which is
12 src = fetchFromGitHub {
13 owner = "opentimestamps";
14 repo = "opentimestamps-client";
15 rev = "opentimestamps-client-v${version}";
16 sha256 = "1aiq9cwr40md54swzm7wkwj0h65psxmvj2japvw79s9x0pp8iwqs";
19 propagatedBuildInputs = [ opentimestamps appdirs GitPython pysocks ];
22 description = "Command-line tool to create and verify OpenTimestamps proofs";
23 homepage = "https://github.com/opentimestamps/opentimestamps-client";
24 license = lib.licenses.lgpl3;