pythonPackages.gtts: init at 2.1.1
This commit is contained in:
parent
c6a5cc3fdf
commit
71113dbc69
53
pkgs/development/python-modules/gtts/default.nix
Normal file
53
pkgs/development/python-modules/gtts/default.nix
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, beautifulsoup4
|
||||||
|
, click
|
||||||
|
, gtts-token
|
||||||
|
, mock
|
||||||
|
, pytest
|
||||||
|
, requests
|
||||||
|
, six
|
||||||
|
, testfixtures
|
||||||
|
, twine
|
||||||
|
, urllib3
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "gtts";
|
||||||
|
version = "2.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pndurette";
|
||||||
|
repo = "gTTS";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1d0r6dnb8xvgyvxz7nfj4q4xqmpmvcwcsjghxrh76m6p364lh1hj";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
beautifulsoup4
|
||||||
|
click
|
||||||
|
gtts-token
|
||||||
|
requests
|
||||||
|
six
|
||||||
|
urllib3
|
||||||
|
twine
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ pytest mock testfixtures ];
|
||||||
|
|
||||||
|
# majority of tests just try to call out to Google's Translate API endpoint
|
||||||
|
doCheck = false;
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "gtts" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Python library and CLI tool to interface with Google Translate text-to-speech API";
|
||||||
|
homepage = "https://gtts.readthedocs.io";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ unode ];
|
||||||
|
};
|
||||||
|
}
|
@ -2777,6 +2777,8 @@ in {
|
|||||||
|
|
||||||
gtimelog = callPackage ../development/python-modules/gtimelog { };
|
gtimelog = callPackage ../development/python-modules/gtimelog { };
|
||||||
|
|
||||||
|
gtts = callPackage ../development/python-modules/gtts { };
|
||||||
|
|
||||||
gurobipy = if stdenv.hostPlatform.system == "x86_64-darwin"
|
gurobipy = if stdenv.hostPlatform.system == "x86_64-darwin"
|
||||||
then callPackage ../development/python-modules/gurobipy/darwin.nix {
|
then callPackage ../development/python-modules/gurobipy/darwin.nix {
|
||||||
inherit (pkgs.darwin) cctools insert_dylib;
|
inherit (pkgs.darwin) cctools insert_dylib;
|
||||||
|
Loading…
Reference in New Issue
Block a user