Files
nixpkgs/pkgs/development/compilers/vyper/default.nix
Ben Siraphob fc397c9cb3 vyper: 0.4.1 -> 0.4.3
Also add immutables dependency.
2025-07-20 02:44:33 -07:00

93 lines
1.6 KiB
Nix

{
lib,
lark,
asttokens,
buildPythonPackage,
cbor2,
fetchPypi,
git,
immutables,
importlib-metadata,
packaging,
pycryptodome,
pythonOlder,
recommonmark,
setuptools-scm,
sphinx,
sphinx-rtd-theme,
writeText,
}:
let
sample-contract = writeText "example.vy" ''
count: int128
@deploy
def __init__(foo: address):
self.count = 1
'';
in
buildPythonPackage rec {
pname = "vyper";
version = "0.4.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-IqdXNldAHYo7xpDWXWt3QWgABxgJeMOgX5iS2zHV3PU=";
};
postPatch = ''
# pythonRelaxDeps doesn't work
substituteInPlace setup.py \
--replace-fail "setuptools_scm>=7.1.0,<8.0.0" "setuptools_scm>=7.1.0"
'';
nativeBuildInputs = [
# Git is used in setup.py to compute version information during building
# ever since https://github.com/vyperlang/vyper/pull/2816
git
setuptools-scm
];
pythonRelaxDeps = [
"asttokens"
"packaging"
];
propagatedBuildInputs = [
lark
asttokens
cbor2
immutables
importlib-metadata
packaging
pycryptodome
# docs
recommonmark
sphinx
sphinx-rtd-theme
];
checkPhase = ''
$out/bin/vyper "${sample-contract}"
'';
pythonImportsCheck = [
"vyper"
];
meta = with lib; {
description = "Pythonic Smart Contract Language for the EVM";
homepage = "https://github.com/vyperlang/vyper";
changelog = "https://github.com/vyperlang/vyper/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ siraben ];
};
}