python3Packages.appnope: migrate to pyproject

This commit is contained in:
Harinn 2026-06-04 19:41:36 +07:00
commit 439b608eaa

View file

@ -2,13 +2,14 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "appnope";
version = "0.1.4";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "minrk";
@ -17,6 +18,8 @@ buildPythonPackage rec {
hash = "sha256-We7sZKVbQFIMdZpS+VMdi0RH1O/qtFNrfJNg/98tO5A=";
};
build-system = [ setuptools ];
checkInputs = [ pytestCheckHook ];
meta = {