Files
nixpkgs/pkgs/development/python-modules/bitcoinlib/default.nix
T

30 lines
831 B
Nix
Raw Normal View History

2020-05-31 13:37:26 +02:00
{ stdenv, lib, buildPythonPackage, isPy3k, fetchFromGitHub, openssl }:
2017-12-21 11:35:32 -08:00
2017-12-24 05:15:58 +00:00
let ext = if stdenv.isDarwin then "dylib" else "so";
in buildPythonPackage rec {
2017-12-21 11:35:32 -08:00
pname = "bitcoinlib";
2020-05-31 13:37:26 +02:00
version = "0.11.0";
disabled = !isPy3k;
2017-12-21 11:35:32 -08:00
src = fetchFromGitHub {
owner = "petertodd";
repo = "python-bitcoinlib";
2020-05-31 13:37:26 +02:00
rev = "python-${pname}-v${version}";
sha256 = "0pwypd966zzivb37fvg4l6yr7ihplqnr1jwz9zm3biip7x89bdzm";
2017-12-21 11:35:32 -08:00
};
postPatch = ''
substituteInPlace bitcoin/core/key.py --replace \
"ctypes.util.find_library('ssl') or 'libeay32'" \
2017-12-24 05:15:58 +00:00
"'${openssl.out}/lib/libssl.${ext}'"
2017-12-21 11:35:32 -08:00
'';
meta = {
homepage = src.meta.homepage;
description = "Easy interface to the Bitcoin data structures and protocol";
2020-05-31 13:37:26 +02:00
license = with lib.licenses; [ lgpl3 ];
2017-12-21 11:35:32 -08:00
maintainers = with lib.maintainers; [ jb55 ];
};
}