Merge pull request #187965 from fabaff/amarna-bump
python310Packages.amarna: 0.1.2 -> 0.1.3
This commit is contained in:
commit
279e8eaf51
1 changed files with 16 additions and 6 deletions
|
@ -4,30 +4,40 @@
|
|||
, lark
|
||||
, pydot
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "amarna";
|
||||
version = "0.1.2";
|
||||
version = "0.1.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "crytic";
|
||||
repo = "amarna";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ohR6VJFIvUCMkppqdCV/kJwEmh1fP0QhfQfNu3RoMeU=";
|
||||
hash = "sha256-cE7OhACLpRmbJWzMsGTidbbw9FOKBbz47LEJwTW6wck=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
lark
|
||||
pydot
|
||||
];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
pythonImportsCheck = [ "amarna" ];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"amarna"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Amarna is a static-analyzer and linter for the Cairo programming language.";
|
||||
description = "Static-analyzer and linter for the Cairo programming language";
|
||||
homepage = "https://github.com/crytic/amarna";
|
||||
license = licenses.agpl3;
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ raitobezarius ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue