depot/third_party/nixpkgs/pkgs/development/python-modules/audiotools/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

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 = [ ];
};
}