Merge pull request #32948 from jb55/python-bitcoinlib
python-bitcoinlib: init at 0.9.0
This commit is contained in:
commit
1b555a678e
27
pkgs/development/python-modules/bitcoinlib/default.nix
Normal file
27
pkgs/development/python-modules/bitcoinlib/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, openssl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bitcoinlib";
|
||||
version = "0.9.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "petertodd";
|
||||
rev = "7a8a47ec6b722339de1d0a8144e55b400216f90f";
|
||||
repo = "python-bitcoinlib";
|
||||
sha256 = "1s1jm2nid7ab7yiwlp1n2v3was9i4q76xmm07wvzpd2zvn5zb91z";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace bitcoin/core/key.py --replace \
|
||||
"ctypes.util.find_library('ssl') or 'libeay32'" \
|
||||
"\"${openssl.out}/lib/libssl.so\""
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = src.meta.homepage;
|
||||
description = "Easy interface to the Bitcoin data structures and protocol";
|
||||
license = with lib.licenses; [ gpl3 ];
|
||||
maintainers = with lib.maintainers; [ jb55 ];
|
||||
};
|
||||
}
|
@ -185,6 +185,8 @@ in {
|
||||
|
||||
bayespy = callPackage ../development/python-modules/bayespy { };
|
||||
|
||||
bitcoinlib = callPackage ../development/python-modules/bitcoinlib { };
|
||||
|
||||
bitcoin-price-api = callPackage ../development/python-modules/bitcoin-price-api { };
|
||||
|
||||
blivet = callPackage ../development/python-modules/blivet { };
|
||||
|
Loading…
Reference in New Issue
Block a user