Files
nixpkgs/pkgs/development/python-modules/aigpy/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

40 lines
693 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 = "Python library with miscellaneous tools";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.misterio77 ];
platforms = lib.platforms.all;
};
}