fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
44 lines
973 B
Nix
44 lines
973 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
gnupg,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycoin";
|
|
version = "0.92.20230326";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DYXwATRHw1ay9swLuQOtB+5LcoBe4TtAKWzQgxESwN8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./pycoin/cmds/tx.py --replace '"gpg"' '"${gnupg}/bin/gpg"'
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
# Disable tests depending on online services
|
|
disabledTests = [
|
|
"ServicesTest"
|
|
"test_tx_pay_to_opcode_list_txt"
|
|
"test_tx_fetch_unspent"
|
|
"test_tx_with_gpg"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for Bitcoin and altcoin addresses and transaction manipulation";
|
|
homepage = "https://github.com/richardkiss/pycoin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nyanloutre ];
|
|
};
|
|
}
|