python310Packages.amarna: init at 0.1.2

This commit is contained in:
Raito Bezarius 2022-08-12 17:30:44 +02:00
parent 5524cbd127
commit f9d47f6c6b
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, lark
, pydot
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "amarna";
version = "0.1.2";
src = fetchFromGitHub {
owner = "crytic";
repo = "amarna";
rev = "v${version}";
sha256 = "sha256-ohR6VJFIvUCMkppqdCV/kJwEmh1fP0QhfQfNu3RoMeU=";
};
propagatedBuildInputs = [
lark
pydot
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "amarna" ];
meta = with lib; {
description = "Amarna is a static-analyzer and linter for the Cairo programming language.";
homepage = "https://github.com/crytic/amarna";
license = licenses.agpl3;
maintainers = with maintainers; [ raitobezarius ];
};
}

View file

@ -489,6 +489,8 @@ in {
altair = callPackage ../development/python-modules/altair { };
amarna = callPackage ../development/python-modules/amarna { };
amazon-ion = callPackage ../development/python-modules/amazon-ion { };
amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { };