Files
nixpkgs/pkgs/development/python-modules/amarna/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

45 lines
823 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, lark
, pydot
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "amarna";
version = "0.1.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "crytic";
repo = "amarna";
rev = "refs/tags/v${version}";
hash = "sha256-tyvHWBhanR7YH87MDWdXUsDEzZG6MgnbshezAbxWO+I=";
};
propagatedBuildInputs = [
lark
pydot
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"amarna"
];
meta = with lib; {
description = "Static-analyzer and linter for the Cairo programming language";
mainProgram = "amarna";
homepage = "https://github.com/crytic/amarna";
license = licenses.agpl3Only;
maintainers = with maintainers; [ raitobezarius ];
};
}