f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
39 lines
691 B
Nix
39 lines
691 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mutagen,
|
|
requests,
|
|
colorama,
|
|
prettytable,
|
|
pycrypto,
|
|
pydub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aigpy";
|
|
version = "2022.7.8.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-1kQced6YdC/wvegqFVhZfej4+4aemGXvKysKjejP13w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mutagen
|
|
requests
|
|
colorama
|
|
prettytable
|
|
pycrypto
|
|
pydub
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/AIGMix/AIGPY";
|
|
description = "Python library with miscellaneous tools";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.misterio77 ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|