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