4f74690292
Notes - We can no longer test for `unknown error in JSON-RPC`. `jm-ob-watcher` now simply outputs `Starting ob-watcher`. Tested working on https://nixbitcoin.org/orderbook. - Removed Agora IRC server since it is offline semi-permanently. Should probably also be removed upstream. - Includes patch for https://github.com/JoinMarket-Org/joinmarket-clientserver/issues/1193
28 lines
942 B
Nix
28 lines
942 B
Nix
{ lib, buildPythonPackage, fetchurl, secp256k1, openssl }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-bitcointx";
|
|
version = "1.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Simplexum/${pname}/archive/${pname}-v${version}.tar.gz";
|
|
sha256 = "f0f487c29619df0e94a04f6deb3dc950ff9954c072017bd3eda90f73c24f0953";
|
|
};
|
|
|
|
patchPhase = ''
|
|
for path in core/secp256k1.py tests/test_load_secp256k1.py; do
|
|
substituteInPlace "bitcointx/$path" \
|
|
--replace "ctypes.util.find_library('secp256k1')" "'${secp256k1}/lib/libsecp256k1.so'"
|
|
done
|
|
substituteInPlace bitcointx/core/key.py \
|
|
--replace "ctypes.util.find_library('ssl')" "'${openssl.out}/lib/libssl.so'"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Interface to Bitcoin transaction data structures";
|
|
homepage = "https://github.com/Simplexum/python-bitcointx";
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|