depot/third_party/nixpkgs/pkgs/development/python-modules/amarna/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

33 lines
704 B
Nix

{ 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 ];
};
}