mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
31 lines
633 B
Nix
31 lines
633 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mutagen
|
|
, requests
|
|
, colorama
|
|
, prettytable
|
|
, pycrypto
|
|
, pydub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aigpy";
|
|
version = "2022.7.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-1kQced6YdC/wvegqFVhZfej4+4aemGXvKysKjejP13w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mutagen requests colorama prettytable pycrypto pydub ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/AIGMix/AIGPY";
|
|
description = "A python library with miscellaneous tools";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.misterio77 ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|