python3Packages.python-blockchain-api: init at 0.0.2

This commit is contained in:
Jamie Magee
2025-08-10 22:55:05 -07:00
parent 59ca61e5a8
commit af92342df5
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "python-blockchain-api";
version = "0.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-JC/FWkSq+Rc/XX39RQgLBnlncuRRumFNArODNJDzAHw=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
pythonImportsCheck = [ "pyblockchain" ];
# Package has no tests
doCheck = false;
meta = {
description = "Python API for interacting with blockchain.info";
homepage = "https://github.com/nkgilley/python-blockchain-api";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -14479,6 +14479,8 @@ self: super: with self; {
python-bitcoinlib = callPackage ../development/python-modules/python-bitcoinlib { };
python-blockchain-api = callPackage ../development/python-modules/python-blockchain-api { };
python-box = callPackage ../development/python-modules/python-box { };
python-bring-api = callPackage ../development/python-modules/python-bring-api { };