mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
43 lines
959 B
Nix
43 lines
959 B
Nix
{ stdenv
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, gnupg
|
|
, setuptools
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycoin";
|
|
version = "0.90.20201031";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "65c19204cb7aece4aae30c44b5e08beecb9c118370a9f9994d6cddaee17c351d";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./pycoin/cmds/tx.py --replace '"gpg"' '"${gnupg}/bin/gpg"'
|
|
'';
|
|
|
|
checkInputs = [ 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 stdenv.lib; {
|
|
description = "Utilities for Bitcoin and altcoin addresses and transaction manipulation";
|
|
homepage = "https://github.com/richardkiss/pycoin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nyanloutre ];
|
|
};
|
|
}
|