7 python3.pkgs.buildPythonApplication rec {
8 pname = "opentimestamps-client";
10 format = "setuptools";
12 src = fetchFromGitHub {
13 owner = "opentimestamps";
14 repo = "opentimestamps-client";
15 rev = "refs/tags/opentimestamps-client-v${version}";
16 hash = "sha256-0dWaXetRlF1MveBdJ0sAdqJ5HCdn08gkbX+nen/ygsQ=";
19 propagatedBuildInputs = with python3.pkgs; [
26 nativeCheckInputs = with python3.pkgs; [
30 pythonImportsCheck = [
35 description = "Command-line tool to create and verify OpenTimestamps proofs";
36 homepage = "https://github.com/opentimestamps/opentimestamps-client";
37 changelog = "https://github.com/opentimestamps/opentimestamps-client/releases/tag/opentimestamps-client-v${version}";
38 license = licenses.lgpl3Only;
39 maintainers = with maintainers; [ erikarvstedt ];