mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #323252 from LeSuisse/vyper-0.4.0
vyper: 0.3.10 -> 0.4.0
This commit is contained in:
commit
d43c890c4f
@ -20,7 +20,7 @@ let
|
|||||||
sample-contract = writeText "example.vy" ''
|
sample-contract = writeText "example.vy" ''
|
||||||
count: int128
|
count: int128
|
||||||
|
|
||||||
@external
|
@deploy
|
||||||
def __init__(foo: address):
|
def __init__(foo: address):
|
||||||
self.count = 1
|
self.count = 1
|
||||||
'';
|
'';
|
||||||
@ -28,14 +28,14 @@ let
|
|||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "vyper";
|
pname = "vyper";
|
||||||
version = "0.3.10";
|
version = "0.4.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.10";
|
disabled = pythonOlder "3.10";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-jcH1AcqrQX+wzpxoppRFh/AUfsfMfTiJzzpFwZRm5Ik=";
|
hash = "sha256-locUXGoL9C3lLpIgLOmpE2SNPGV6yOXPubNaEA3EfjQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user