linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / opentimestamps-client / default.nix
blob4d65a406e53a031374f6439ee870994e34119f48
1 { lib, buildPythonApplication, fetchFromGitHub, isPy3k
2 , opentimestamps, appdirs, GitPython, pysocks, fetchpatch, git
3 }:
5 buildPythonApplication rec {
6   pname = "opentimestamps-client";
7   version = "0.7.0";
8   disabled = (!isPy3k);
10   # We can't use the pypi source because it doesn't include README.md which is
11   # needed in setup.py
12   src = fetchFromGitHub {
13     owner = "opentimestamps";
14     repo = "opentimestamps-client";
15     rev = "opentimestamps-client-v${version}";
16     sha256 = "1aiq9cwr40md54swzm7wkwj0h65psxmvj2japvw79s9x0pp8iwqs";
17   };
19   propagatedBuildInputs = [ opentimestamps appdirs GitPython pysocks ];
21   meta = {
22     description = "Command-line tool to create and verify OpenTimestamps proofs";
23     homepage = "https://github.com/opentimestamps/opentimestamps-client";
24     license = lib.licenses.lgpl3;
25   };