python.pkgs.audiotools: move expression
This commit is contained in:
parent
865ffc16ce
commit
a5e1da3df1
28
pkgs/development/python-modules/audiotools/default.nix
Normal file
28
pkgs/development/python-modules/audiotools/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchurl
|
||||||
|
, stdenv
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "audiotools";
|
||||||
|
version = "3.1.1";
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||||
|
AudioToolbox
|
||||||
|
AudioUnit
|
||||||
|
CoreServices
|
||||||
|
]);
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/tuffy/python-audio-tools/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "0ymlxvqkqhzk4q088qwir3dq0zgwqlrrdfnq7f0iq97g05qshm2c";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Utilities and Python modules for handling audio";
|
||||||
|
homepage = "http://audiotools.sourceforge.net/";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
};
|
||||||
|
}
|
@ -634,27 +634,7 @@ in {
|
|||||||
|
|
||||||
audioread = callPackage ../development/python-modules/audioread { };
|
audioread = callPackage ../development/python-modules/audioread { };
|
||||||
|
|
||||||
audiotools = buildPythonPackage rec {
|
audiotools = callPackage ../development/python-modules/audiotools { };
|
||||||
name = "audiotools-${version}";
|
|
||||||
version = "3.1.1";
|
|
||||||
|
|
||||||
buildInputs = optionals stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [
|
|
||||||
AudioToolbox
|
|
||||||
AudioUnit
|
|
||||||
CoreServices
|
|
||||||
]);
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/tuffy/python-audio-tools/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "0ymlxvqkqhzk4q088qwir3dq0zgwqlrrdfnq7f0iq97g05qshm2c";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Utilities and Python modules for handling audio";
|
|
||||||
homepage = "http://audiotools.sourceforge.net/";
|
|
||||||
license = licenses.gpl2Plus;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
autopep8 = callPackage ../development/python-modules/autopep8 { };
|
autopep8 = callPackage ../development/python-modules/autopep8 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user