python3Packages.aigpy: migrate to pyproject, use finalAttrs (#543190)

This commit is contained in:
Yohann Boniface
2026-07-20 19:24:34 +00:00
committed by GitHub

View File

@@ -8,19 +8,22 @@
prettytable,
pycrypto,
pydub,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aigpy";
version = "2022.7.8.1";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-1kQced6YdC/wvegqFVhZfej4+4aemGXvKysKjejP13w=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
mutagen
requests
colorama
@@ -36,4 +39,4 @@ buildPythonPackage rec {
maintainers = [ lib.maintainers.misterio77 ];
platforms = lib.platforms.all;
};
}
})