mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-30 05:55:40 +00:00
I have effectively renounced on maintaining all these packages and I do not plan to return them except if I'm forced to. I am also fine with most of these packages being dropped for next releases if no maintainer shows up. Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51 Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
39 lines
724 B
Nix
39 lines
724 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lark,
|
|
pydot,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "amarna";
|
|
version = "0.1.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crytic";
|
|
repo = "amarna";
|
|
tag = "v${version}";
|
|
hash = "sha256-tyvHWBhanR7YH87MDWdXUsDEzZG6MgnbshezAbxWO+I=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lark
|
|
pydot
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "amarna" ];
|
|
|
|
meta = {
|
|
description = "Static-analyzer and linter for the Cairo programming language";
|
|
mainProgram = "amarna";
|
|
homepage = "https://github.com/crytic/amarna";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|