File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
pkgs/development/python-modules/py-evm Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 11{
22 lib ,
3- buildPythonPackage ,
43 fetchFromGitHub ,
4+ # python module stuff
5+ buildPythonPackage ,
6+ pythonAtLeast ,
57 setuptools ,
68 # dependencies
79 cached-property ,
2022 hypothesis ,
2123 pytestCheckHook ,
2224 pytest-xdist ,
23- eth-hash ,
25+ pycryptodome ,
2426} :
2527
2628buildPythonPackage rec {
2729 pname = "py-evm" ;
2830 version = "0.12.1-beta.1" ;
2931 pyproject = true ;
3032
33+ # py-evm project has been archived by upstream; its support should be deprecated from "3.14".
34+ disabled = pythonAtLeast "3.14" ;
35+
3136 src = fetchFromGitHub {
3237 owner = "ethereum" ;
3338 repo = "py-evm" ;
@@ -56,8 +61,8 @@ buildPythonPackage rec {
5661 hypothesis
5762 pytestCheckHook
5863 pytest-xdist
59- ]
60- ++ eth-hash . optional-dependencies . pycryptodome ;
64+ pycryptodome
65+ ] ;
6166
6267 disabledTests = [
6368 # side-effect: runs pip online check and is blocked by sandbox
You can’t perform that action at this time.
0 commit comments