python3Packages.arpeggio: migrate to pyproject (#528218)

This commit is contained in:
Nick Cao
2026-06-05 21:40:02 +00:00
committed by GitHub
@@ -3,19 +3,24 @@
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "arpeggio";
version = "2.0.3";
format = "setuptools";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "Arpeggio";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-noWtNc/GyThnaBfHrpoQAKfHKjTHHbDGhxNsRg0SuF4=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "arpeggio" ];
@@ -26,4 +31,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}
})