mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
32 lines
658 B
Nix
32 lines
658 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;
|
|
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;
|
|
};
|
|
}
|