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

30 lines
831 B
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, isPy3k, fetchFromGitHub, openssl }:
2017-12-24 05:15:58 +00:00
let ext = if stdenv.isDarwin then "dylib" else "so";
in buildPythonPackage rec {
pname = "bitcoinlib";
version = "0.11.0";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "petertodd";
repo = "python-bitcoinlib";
rev = "python-${pname}-v${version}";
sha256 = "0pwypd966zzivb37fvg4l6yr7ihplqnr1jwz9zm3biip7x89bdzm";
};
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}'"
'';
meta = {
homepage = src.meta.homepage;
description = "Easy interface to the Bitcoin data structures and protocol";
license = with lib.licenses; [ lgpl3 ];
maintainers = with lib.maintainers; [ jb55 ];
};
}