mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
40 lines
691 B
Nix
40 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;
|
|
};
|
|
}
|