nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #230065 from hellwolf/update-web3

python3Packages.web3: update to 6.3.0

authored by

Ryan Lahfa and committed by
GitHub
c27ef48c 00c0a233

+6 -2
+6 -2
pkgs/development/python-modules/web3/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "web3"; 28 - version = "5.31.1"; 28 + version = "6.3.0"; 29 29 format = "setuptools"; 30 30 31 31 disabled = pythonOlder "3.7"; ··· 34 34 owner = "ethereum"; 35 35 repo = "web3.py"; 36 36 rev = "v${version}"; 37 - hash = "sha256-YsAbPI9Y6z+snKZ9NsA0YSpB38n+ra4+Ei6COYFe8v4="; 37 + hash = "sha256-p3Dpmb0BST1nbh42q/eK/DjQqoIPHvNr2KllRpTgFFw="; 38 38 }; 39 39 40 40 nativeBuildInputs = [ ··· 71 71 #]; 72 72 73 73 doCheck = false; 74 + 75 + postPatch = '' 76 + substituteInPlace setup.py --replace "types-protobuf==3.19.13" "types-protobuf" 77 + ''; 74 78 75 79 pythonImportsCheck = [ 76 80 "web3"