12 buildPythonPackage rec {
13 pname = "opentimestamps";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "opentimestamps";
21 repo = "python-opentimestamps";
22 rev = "python-opentimestamps-v${version}";
23 hash = "sha256-clG/5NAPmmmoj4b3LdVwl58DHg1EFMIMu+erx+GT+NE=";
26 propagatedBuildInputs = [
32 nativeCheckInputs = [ pytestCheckHook ];
34 # Remove a failing test which expects the test source file to reside in the
37 rm opentimestamps/tests/core/test_git.py
40 pythonImportsCheck = [ "opentimestamps" ];
43 description = "Create and verify OpenTimestamps proofs";
44 homepage = "https://github.com/opentimestamps/python-opentimestamps";
45 changelog = "https://github.com/opentimestamps/python-opentimestamps/releases/tag/python-opentimestamps-v${version}";
46 license = licenses.lgpl3Plus;
47 maintainers = with maintainers; [ erikarvstedt ];