1{ lib 2, buildPythonPackage 3, fetchPypi 4, mutagen 5, requests 6, colorama 7, prettytable 8, pycrypto 9, pydub 10}: 11 12buildPythonPackage rec { 13 pname = "aigpy"; 14 version = "2022.7.8.1"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "sha256-1kQced6YdC/wvegqFVhZfej4+4aemGXvKysKjejP13w="; 19 }; 20 21 propagatedBuildInputs = [ mutagen requests colorama prettytable pycrypto pydub ]; 22 23 meta = { 24 homepage = "https://github.com/AIGMix/AIGPY"; 25 description = "A python library with miscellaneous tools"; 26 license = lib.licenses.mit; 27 maintainers = [ lib.maintainers.misterio77 ]; 28 platforms = lib.platforms.all; 29 }; 30}