7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
38 lines
747 B
Nix
38 lines
747 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
stdenv,
|
|
AudioToolbox,
|
|
AudioUnit,
|
|
CoreServices,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "audiotools";
|
|
version = "3.1.1";
|
|
pyproject = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
AudioToolbox
|
|
AudioUnit
|
|
CoreServices
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tuffy";
|
|
repo = "python-audio-tools";
|
|
rev = "v${version}";
|
|
hash = "sha256-y+EiK9BktyTWowOiJvOb2YjtbPa7R62Wb5zinkyt1OM=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utilities and Python modules for handling audio";
|
|
homepage = "https://audiotools.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|