depot/third_party/nixpkgs/pkgs/development/compilers/vyper/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

76 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pythonRelaxDepsHook
, writeText
, asttokens
, pycryptodome
, recommonmark
, semantic-version
, sphinx
, sphinx_rtd_theme
, pytest-runner
, setuptools-scm
, git
}:
let
sample-contract = writeText "example.vy" ''
count: int128
@external
def __init__(foo: address):
self.count = 1
'';
in
buildPythonPackage rec {
pname = "vyper";
version = "0.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BAnNj27B1HAb9VVDA69bFGbQjeOpl0g5EB2juajqBAw=";
};
nativeBuildInputs = [
# Git is used in setup.py to compute version information during building
# ever since https://github.com/vyperlang/vyper/pull/2816
git
pythonRelaxDepsHook
pytest-runner
setuptools-scm
];
pythonRelaxDeps = [ "semantic-version" ];
propagatedBuildInputs = [
asttokens
pycryptodome
semantic-version
# docs
recommonmark
sphinx
sphinx_rtd_theme
];
checkPhase = ''
$out/bin/vyper "${sample-contract}"
'';
meta = with lib; {
description = "Pythonic Smart Contract Language for the EVM";
homepage = "https://github.com/vyperlang/vyper";
license = licenses.asl20;
maintainers = with maintainers; [ siraben ];
knownVulnerabilities = [
"CVE-2022-29255"
];
};
}