about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aigpy/default.nix
blob: d8cadb97e1cc9eca56af2327b454e8beaff724cd (plain) (blame)
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
32
33
34
35
36
37
38
39
{
  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 = "Python library with miscellaneous tools";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.misterio77 ];
    platforms = lib.platforms.all;
  };
}