nixpkgs/pkgs/development/python-modules/audiotools/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
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
2023-12-07 17:46:49 +01:00

35 lines
700 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, stdenv
, AudioToolbox
, AudioUnit
, CoreServices
}:
buildPythonPackage rec {
pname = "audiotools";
version = "3.1.1";
format = "setuptools";
buildInputs = lib.optionals stdenv.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 = with maintainers; [ ];
};
}