nixpkgs/pkgs/development/python-modules/amarna/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
704 B
Nix
Raw Normal View History

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