1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
aiohttp,
eth-abi,
eth-account,
eth-hash,
eth-typing,
eth-utils,
hexbytes,
jsonschema,
lru-dict,
protobuf,
pydantic,
requests,
types-requests,
websockets,
# optional-dependencies
ipfshttpclient,
# tests
eth-tester,
flaky,
hypothesis,
py-evm,
pytest-asyncio,
pytest-mock,
pytest-xdist,
pytestCheckHook,
pyunormalize,
}:
buildPythonPackage rec {
pname = "web3";
version = "7.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "web3.py";
tag = "v${version}";
hash = "sha256-jcRbyYbbqcY7WYIO8wiqLWYnS73NRDfMIpxDFT8ulSY=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [
"websockets"
];
dependencies = [
aiohttp
eth-abi
eth-account
eth-hash
]
++ eth-hash.optional-dependencies.pycryptodome
++ [
eth-typing
eth-utils
hexbytes
jsonschema
lru-dict
protobuf
pydantic
requests
types-requests
websockets
];
# Note: to reflect the extra_requires in main/setup.py.
optional-dependencies = {
ipfs = [ ipfshttpclient ];
};
nativeCheckInputs = [
eth-tester
flaky
hypothesis
py-evm
pytest-asyncio
pytest-mock
pytest-xdist
pytestCheckHook
pyunormalize
];
disabledTests = [
# side-effect: runs pip online check and is blocked by sandbox
"test_install_local_wheel"
# not sure why they fail
"test_async_init_multiple_contracts_performance"
"test_init_multiple_contracts_performance"
# AssertionError: assert '/build/geth.ipc' == '/tmp/geth.ipc
"test_get_dev_ipc_path"
# Require network access
"test_websocket_provider_timeout"
];
disabledTestPaths = [
# requires geth library and binaries
"tests/integration/go_ethereum"
# requires local running beacon node
"tests/beacon"
];
pythonImportsCheck = [ "web3" ];
meta = {
description = "Python interface for interacting with the Ethereum blockchain and ecosystem";
homepage = "https://web3py.readthedocs.io/";
changelog = "https://web3py.readthedocs.io/en/stable/release_notes.html";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hellwolf ];
};
}
|