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