python3Packages.amarna: migrate to pyproject (#526896)

This commit is contained in:
Michael Daniels
2026-08-22 20:24:47 +00:00
committed by GitHub

View File

@@ -5,21 +5,24 @@
lark,
pydot,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "amarna";
version = "0.1.5";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "crytic";
repo = "amarna";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-tyvHWBhanR7YH87MDWdXUsDEzZG6MgnbshezAbxWO+I=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
lark
pydot
];
@@ -35,4 +38,4 @@ buildPythonPackage rec {
license = lib.licenses.agpl3Only;
maintainers = [ ];
};
}
})