3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #204429 from erikarvstedt/opentimestamps-0.4.3

pythonPackages.opentimestamps: 0.4.2 -> 0.4.3
This commit is contained in:
Pavol Rusnak 2022-12-04 14:28:16 +01:00 committed by GitHub
commit 6918746f97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -4,14 +4,14 @@
, fetchFromGitHub
, git
, GitPython
, pysha3
, pycryptodomex
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "opentimestamps";
version = "0.4.2";
version = "0.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -20,17 +20,16 @@ buildPythonPackage rec {
owner = "opentimestamps";
repo = "python-opentimestamps";
rev = "python-opentimestamps-v${version}";
hash = "sha256-RRCAxDYWySmnG1sEQWurUDQsu+vPx9Npbr6BaoNGm1U=";
hash = "sha256-ZTZ7D3NGhO18IxKqTMFBe6pDvqtGR+9w0cgs6VAHtwg=";
};
propagatedBuildInputs = [
bitcoinlib
GitPython
pysha3
pycryptodomex
];
checkInputs = [
git
pytestCheckHook
];
@ -48,6 +47,6 @@ buildPythonPackage rec {
description = "Create and verify OpenTimestamps proofs";
homepage = "https://github.com/opentimestamps/python-opentimestamps";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ erikarvstedt ];
};
}

View file

@ -18,9 +18,10 @@ buildPythonApplication rec {
propagatedBuildInputs = [ opentimestamps appdirs GitPython pysocks ];
meta = {
meta = with lib; {
description = "Command-line tool to create and verify OpenTimestamps proofs";
homepage = "https://github.com/opentimestamps/opentimestamps-client";
license = lib.licenses.lgpl3;
license = licenses.lgpl3;
maintainers = with maintainers; [ erikarvstedt ];
};
}