opentimestamps-client: init at 0.5.1
This commit is contained in:
parent
7374c5bed9
commit
2ee097b820
23
pkgs/tools/misc/opentimestamps-client/default.nix
Normal file
23
pkgs/tools/misc/opentimestamps-client/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildPythonApplication, fetchFromGitHub, isPy3k
|
||||
, opentimestamps, GitPython, pysocks }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
name = "opentimestamps-client-${version}";
|
||||
version = "0.5.1";
|
||||
disabled = (!isPy3k);
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "opentimestamps";
|
||||
repo = "opentimestamps-client";
|
||||
rev = "opentimestamps-client-v0.5.1";
|
||||
sha256 = "0s549xkb75r5wyvjlfmac8a1df6w0y55l98f492zsihdns1d6rzq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ opentimestamps GitPython pysocks ];
|
||||
|
||||
meta = {
|
||||
description = "Command-line tool to create and verify OpenTimestamps proofs";
|
||||
homepage = https://github.com/opentimestamps/opentimestamps-client;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
}
|
@ -16860,6 +16860,8 @@ with pkgs;
|
||||
|
||||
openscad = callPackage ../applications/graphics/openscad {};
|
||||
|
||||
opentimestamps-client = python3Packages.callPackage ../tools/misc/opentimestamps-client {};
|
||||
|
||||
opentx = callPackage ../applications/misc/opentx { };
|
||||
|
||||
opera = callPackage ../applications/networking/browsers/opera {};
|
||||
|
Loading…
Reference in New Issue
Block a user