summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/bureautomation/deps/gtts-token.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-10-30 08:01:44 +0100
committerJeschli <jeschli@gmail.com>2019-11-14 15:36:11 +0100
commit2ac3254bd9dd4357c4c3d2880f7a127d3ff9d77c (patch)
treecb307726229766667b7c97c78b9087e08f7a6ebd /makefu/2configs/bureautomation/deps/gtts-token.nix
parent3f5b67e68c1a78ef9f3c3c6499e48b4e00dc6c66 (diff)
ma bureautomation: fix all the regression, add openwrt-luci-rpc as dependency
Diffstat (limited to 'makefu/2configs/bureautomation/deps/gtts-token.nix')
-rw-r--r--makefu/2configs/bureautomation/deps/gtts-token.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/makefu/2configs/bureautomation/deps/gtts-token.nix b/makefu/2configs/bureautomation/deps/gtts-token.nix
deleted file mode 100644
index 69640f03..00000000
--- a/makefu/2configs/bureautomation/deps/gtts-token.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, requests
-}:
-
-buildPythonPackage rec {
- pname = "gtts-token";
- version = "1.1.3";
-
- src = fetchPypi {
- pname = "gTTS-token";
- inherit version;
- sha256 = "9d6819a85b813f235397ef931ad4b680f03d843c9b2a9e74dd95175a4bc012c5";
- };
-
- propagatedBuildInputs = [
- requests
- ];
-
- meta = with lib; {
- description = "Calculates a token to run the Google Translate text to speech";
- homepage = https://github.com/boudewijn26/gTTS-token;
- license = licenses.mit;
- # maintainers = [ maintainers. ];
- };
-}