python3Packages.python-blockchain-api: init at 0.0.2 (#432709)

This commit is contained in:
Martin Weinelt
2025-08-11 13:11:24 +02:00
committed by GitHub
3 changed files with 38 additions and 1 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 ];
};
}
@@ -596,7 +596,8 @@
];
"blockchain" =
ps: with ps; [
]; # missing inputs: python-blockchain-api
python-blockchain-api
];
"blue_current" =
ps: with ps; [
bluecurrent-api
+2
View File
@@ -14487,6 +14487,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 { };