nixpkgs/pkgs/development/python-modules/pydub/default.nix

24 lines
576 B
Nix
Raw Normal View History

2017-09-14 08:40:37 +02:00
{ stdenv, buildPythonPackage, fetchPypi, scipy, ffmpeg-full }:
buildPythonPackage rec {
pname = "pydub";
2018-06-21 07:37:18 +02:00
version = "0.22.1";
2017-09-14 08:40:37 +02:00
src = fetchPypi {
inherit pname version;
2018-06-21 07:37:18 +02:00
sha256 = "20beff39e9959a3b2cb4392802aecb9b2417837fff635d2b00b5ef5f5326d313";
2017-09-14 08:40:37 +02:00
};
patches = [
./pyaudioop-python3.patch
];
checkInputs = [ scipy ffmpeg-full ];
meta = with stdenv.lib; {
description = "Manipulate audio with a simple and easy high level interface.";
homepage = "http://pydub.com/";
license = licenses.mit;
platforms = platforms.all;
};
}