mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
python310Packages.amarna: init at 0.1.2
This commit is contained in:
parent
5524cbd127
commit
f9d47f6c6b
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/amarna/default.nix
Normal file
33
pkgs/development/python-modules/amarna/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -489,6 +489,8 @@ in {
|
||||||
|
|
||||||
altair = callPackage ../development/python-modules/altair { };
|
altair = callPackage ../development/python-modules/altair { };
|
||||||
|
|
||||||
|
amarna = callPackage ../development/python-modules/amarna { };
|
||||||
|
|
||||||
amazon-ion = callPackage ../development/python-modules/amazon-ion { };
|
amazon-ion = callPackage ../development/python-modules/amazon-ion { };
|
||||||
|
|
||||||
amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { };
|
amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { };
|
||||||
|
|
Loading…
Reference in a new issue