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

25 lines
608 B
Nix
Raw Normal View History

2017-09-14 07:40:37 +01:00
{ stdenv, buildPythonPackage, fetchPypi, scipy, ffmpeg-full }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pydub";
2018-02-26 17:46:39 +00:00
version = "0.21.0";
2017-09-14 07:40:37 +01:00
src = fetchPypi {
inherit pname version;
2018-02-26 17:46:39 +00:00
sha256 = "27acc5977b0f5220682175d44fda737bbf818143b0832c0c3863b5dde38e197a";
2017-09-14 07:40:37 +01: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;
};
}