summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/aigpy/default.nix
blob: ef0e5f13273acd7691bad3e75b6d2a29526c67d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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;
    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;
  };
}