depot/third_party/nixpkgs/pkgs/development/python-modules/web3/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

74 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
aiohttp,
eth-abi,
eth-account,
eth-hash,
eth-typing,
eth-utils,
hexbytes,
ipfshttpclient,
jsonschema,
lru-dict,
protobuf,
requests,
websockets,
}:
buildPythonPackage rec {
pname = "web3";
version = "6.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ethereum";
repo = "web3.py";
rev = "v${version}";
hash = "sha256-RNWCZQjcse415SSNkHhMWckDcBJGFZnjisckF7gbYY8=";
};
# Note: to reflect the extra_requires in main/setup.py.
passthru.optional-dependencies = {
ipfs = [ ipfshttpclient ];
};
propagatedBuildInputs =
[
aiohttp
eth-abi
eth-account
eth-hash
]
++ eth-hash.optional-dependencies.pycryptodome
++ [
eth-typing
eth-utils
hexbytes
jsonschema
lru-dict
protobuf
requests
websockets
];
# TODO: package eth-tester required for tests
doCheck = false;
postPatch = ''
substituteInPlace setup.py --replace "types-protobuf==3.19.13" "types-protobuf"
'';
pythonImportsCheck = [ "web3" ];
meta = with lib; {
description = "A python interface for interacting with the Ethereum blockchain and ecosystem";
homepage = "https://web3py.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ hellwolf ];
};
}