python3Packages.python-blockchain-api: init at 0.0.2 (#432709)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user