python3Packages.bitcoin-utils-fork-minimal: init at 0.4.11.4
This commit is contained in:
parent
465d38d53a
commit
8aae0b20f3
2 changed files with 47 additions and 0 deletions
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, base58
|
||||
, buildPythonPackage
|
||||
, ecdsa
|
||||
, fetchPypi
|
||||
, sympy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bitcoin-utils-fork-minimal";
|
||||
version = "0.4.11.4";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-n3tEQkl6KBAno4LY67lZme3TIvsm35VA2yyfWYuIE1c=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
base58
|
||||
ecdsa
|
||||
sympy
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "sympy==1.3" "sympy>=1.3" \
|
||||
--replace "base58==2.1.0" "base58>=2.1.0" \
|
||||
--replace "ecdsa==0.13.3" "ecdsa>=0.13.3"
|
||||
'';
|
||||
|
||||
# Project doesn't ship tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"bitcoinutils"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bitcoin utility functions";
|
||||
homepage = "https://github.com/doersf/python-bitcoin-utils";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -1200,6 +1200,8 @@ in {
|
|||
|
||||
bitcoin-price-api = callPackage ../development/python-modules/bitcoin-price-api { };
|
||||
|
||||
bitcoin-utils-fork-minimal = callPackage ../development/python-modules/bitcoin-utils-fork-minimal { };
|
||||
|
||||
bitcoinrpc = callPackage ../development/python-modules/bitcoinrpc { };
|
||||
|
||||
bitlist = callPackage ../development/python-modules/bitlist { };
|
||||
|
|
Loading…
Reference in a new issue