depot/third_party/nixpkgs/pkgs/development/python-modules/opentimestamps/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

50 lines
1.2 KiB
Nix

{
lib,
bitcoinlib,
buildPythonPackage,
fetchFromGitHub,
git,
gitpython,
pycryptodomex,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "opentimestamps";
version = "0.4.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "opentimestamps";
repo = "python-opentimestamps";
rev = "python-opentimestamps-v${version}";
hash = "sha256-clG/5NAPmmmoj4b3LdVwl58DHg1EFMIMu+erx+GT+NE=";
};
propagatedBuildInputs = [
bitcoinlib
gitpython
pycryptodomex
];
nativeCheckInputs = [ pytestCheckHook ];
# Remove a failing test which expects the test source file to reside in the
# project's Git repo
postPatch = ''
rm opentimestamps/tests/core/test_git.py
'';
pythonImportsCheck = [ "opentimestamps" ];
meta = with lib; {
description = "Create and verify OpenTimestamps proofs";
homepage = "https://github.com/opentimestamps/python-opentimestamps";
changelog = "https://github.com/opentimestamps/python-opentimestamps/releases/tag/python-opentimestamps-v${version}";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ erikarvstedt ];
};
}