1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

New port: finance/py-python-bitcoinlib

Provides an easy interface to the bitcoin data structures and protocol. The
approach is low-level and "ground up", with a focus on providing tools to
manipulate the internals of how Bitcoin works.

WWW: https://github.com/petertodd/python-bitcoinlib/

Approved by:	miwi (mentor)
Differential Revision:	https://reviews.freebsd.org/D19542
This commit is contained in:
Kai Knoblich 2019-03-13 16:40:39 +00:00
parent ba032850a0
commit 3614d116f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=495614
4 changed files with 29 additions and 0 deletions

View File

@ -97,6 +97,7 @@
SUBDIR += prestashop
SUBDIR += py-bitcoin
SUBDIR += py-pycoin
SUBDIR += py-python-bitcoinlib
SUBDIR += py-python-obelisk
SUBDIR += py-stripe
SUBDIR += py-ta-lib

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= python-bitcoinlib
PORTVERSION= 0.10.1
CATEGORIES= finance python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= kai@FreeBSD.org
COMMENT= Swiss Army Knife of the Bitcoin protocol
LICENSE= LGPL3+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1549630106
SHA256 (python-bitcoinlib-0.10.1.tar.gz) = 0fe7de6c083e12479eb12d3764ece83e5c73b1c48e806009ee1a1aa02da098cf
SIZE (python-bitcoinlib-0.10.1.tar.gz) = 135322

View File

@ -0,0 +1,5 @@
Provides an easy interface to the bitcoin data structures and protocol. The
approach is low-level and "ground up", with a focus on providing tools to
manipulate the internals of how Bitcoin works.
WWW: https://github.com/petertodd/python-bitcoinlib/