nixpkgs/pkgs/tools/misc/opentimestamps-client/default.nix
Erik Arvstedt 7db5d94c36 opentimestamps-client: 0.6.0 -> 0.7.0
The extra git check input and the patch aren't needed anymore.
2020-03-13 04:06:10 +00:00

27 lines
827 B
Nix

{ lib, buildPythonApplication, fetchFromGitHub, isPy3k
, opentimestamps, appdirs, GitPython, pysocks, fetchpatch, git
}:
buildPythonApplication rec {
pname = "opentimestamps-client";
version = "0.7.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-v${version}";
sha256 = "1aiq9cwr40md54swzm7wkwj0h65psxmvj2japvw79s9x0pp8iwqs";
};
propagatedBuildInputs = [ opentimestamps appdirs GitPython pysocks ];
meta = {
description = "Command-line tool to create and verify OpenTimestamps proofs";
homepage = https://github.com/opentimestamps/opentimestamps-client;
license = lib.licenses.lgpl3;
};
}